Python Program #37 - Sort Numbers using Bubble Sort in Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 พ.ย. 2024

ความคิดเห็น • 9

  • @AmmanRizwan-z6e
    @AmmanRizwan-z6e 28 วันที่ผ่านมา

    You can also swap a two variable in python like this:
    arr[j], arr[j+1] = arr[j+1], arr[j]

  • @hanzalasarguroh
    @hanzalasarguroh 2 หลายเดือนก่อน +1

    in second loop putting (len(list1)-i -1), will save iterations.

  • @2amlofi107
    @2amlofi107 6 หลายเดือนก่อน +2

    why did we use the first for loop? why did not we use only one loop?

    • @victorfadel06
      @victorfadel06 6 หลายเดือนก่อน

      I want to understant it too...

    • @HungryBen-d7y
      @HungryBen-d7y 4 หลายเดือนก่อน +1

      this is called nested loops. the first one is outer loop and and the insert one is inner loop, so when outer loop run once then the inner loop gotta finish his job from 0 to whatever it has to run to end with and then when the inner loop is done then the outer loop goes again. So, basically it is a loop inside a loop so when the first one run then the second one has to finish his job then the first will run again and then second has to finish his run and so on. i hope u got it. ye cant use one loop because we have to go first test then second test then so on.

    • @3thrisha869
      @3thrisha869 2 หลายเดือนก่อน +1

      ​@@HungryBen-d7ythanks

    • @HungryBen-d7y
      @HungryBen-d7y 2 หลายเดือนก่อน

      @@3thrisha869 your welcome

  • @phantomAviation2003
    @phantomAviation2003 5 หลายเดือนก่อน

    i dont understand explain better pls

    • @HungryBen-d7y
      @HungryBen-d7y 4 หลายเดือนก่อน +1

      what part you dont understand i will explain