Aug-12-2017, 02:54 PM
I would like to sort several points from smallest to biggest however. I will wish to get this result:
![[Image: 64263364a.png]](https://img4.hostingpics.net/pics/64263364a.png)
However, my ranking seems to be reversed for now :-(
![[Image: 53283842b.png]](https://img4.hostingpics.net/pics/53283842b.png)
I think my problem is my function Bubblesort ?
![[Image: 64263364a.png]](https://img4.hostingpics.net/pics/64263364a.png)
However, my ranking seems to be reversed for now :-(
![[Image: 53283842b.png]](https://img4.hostingpics.net/pics/53283842b.png)
I think my problem is my function Bubblesort ?
def Bubblesort(name, goal1, point): swap = True while swap: swap = False for i in range(len(name)-1): if point[i+1] > point[i]: goal1[i], goal1[i+1] = goal1[i+1], goal1[i] name[i], name[i+1] = name[i+1], name[i] point[i], point[i + 1] = point[i + 1], point[i] swap = True return name, goal1, point def ranking(name, point): for i in range(len(name)): print(name[i], "\t" , point[i], " \t ") name = ["Henry", "Owen", "Drogba"] point = [0]*3 goal1 = [68, 52, 46] gain = [6,4,2] name, goal1, point = Bubblesort( name, goal1, point ) for i in range(len(name)): point[i] += gain[i] ranking (name, point)