python 无法打印排序后的倒排表,怎么办?[关闭]

3ks5zfa0  于 2023-05-27  发布在  Python
关注(0)|答案(1)|浏览(117)

**已关闭。**此问题为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)

有谁能给我指个方向吗?

2ic8powd

2ic8powd1#

你必须这样做:

sorted(cars, reverse=True)

所以对于打印机:

print(sorted(cars, reverse=True))

相关问题