python给数字排序的方法:

使用列表的append函数将数字都添加进列表

使用sort函数对列表进行排序,给数字排序就完成了

示例如下:

li = []
for i in range(0, 10):
    li.append(i)
li.sort(reverse=True)
print(li)

执行结果如下:

企业微信截图_20200618115641.jpg

想了解更多python知识,请观看Python入门教程(黑马程序员)!!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何给数字排序