📜  一个程序,它要求用户输入数字列表并在 python 代码示例中对其进行反向排序

📅  最后修改于: 2022-03-11 14:45:10.011000             🧑  作者: Mango

代码示例3
# this is for retrocompatibility. Python 3 users will ditch raw_input altogether
try:
    raw_input
except NameError:
    raw_input = input   # for python 3 users :)

# initialize the list with the first element
my_list = [int(raw_input("Enter a number: "))]

while True:
    b = raw_input("Do you want to input more: ")
    if b == 'yes':
        # add one element
        my_list.append(int(raw_input("Enter another number:")))
    elif b == 'no':
        my_list.sort(reverse=True)
        print(my_list)
        break