初学小白求助个while循环问题
给出一个列表,希望对列表中的数进行升序和降序排列并打出结果。给出一个列表,希望对列表中的数进行升序和降序排列并打出结果。
list =
length = len(list)
while length:
for i in range(length -1):
if list > list:
temp = list
list = list
list = temp
length -= 1
print(list)
while length:
for i in range(length-1):
if list < list :
temp = list
list = list
list = temp
length -= 1
print(list)跑出来的结果是
第二个while循环没启作用啊,为什么
页:
[1]