Python3.7.1学习 将列表中的元素转化为数字并排序
Posted wolf child
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3.7.1学习 将列表中的元素转化为数字并排序相关的知识,希望对你有一定的参考价值。
# 本文实例讲述了Python中列表元素转为数字的方法。分享给大家供大家参考,具体如下:
# 有一个数字字符的列表:
numbers = [‘2‘, ‘4‘, ‘1‘, ‘3‘]
print(numbers)
numbers = list(map(int, numbers))
print(numbers) # 输出结果 [2, 4, 1, 3]
# 排序:
# 使用sorted函数,从小到大排序:
numbers = sorted(numbers, reverse = False)
print(numbers) # 输出结果 [1, 2, 3, 4]
# 从大到小排序:
numbers = sorted(numbers, reverse = True)
print(numbers) # 输出结果 [4, 3, 2, 1]
以上是关于Python3.7.1学习 将列表中的元素转化为数字并排序的主要内容,如果未能解决你的问题,请参考以下文章