**已关闭。**此问题为not reproducible or was caused by typos。目前不接受答复。
此问题是由打印错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
22小时前关闭
Improve this question
无法打印排序的反向列表
在这一行中,我在哪里放置reverse=True?print(sorted(cars))
print("\nHere is the sorted list:")
print(sorted(cars))
我试过几种方法:
print("\nHere is the sorted list:")
print(sorted(cars reverse=True))
和
print("\nHere is the sorted list:")
print(sorted(cars reverse=True))
也
print("\nHere is the sorted list:")
print(sorted, cars, reverse=True)
有谁能给我指个方向吗?
1条答案
按热度按时间2ic8powd1#
你必须这样做:
所以对于打印机: