码迷,mamicode.com
首页 > 编程语言 > 详细

将列表中的元素转化为数字并排序

时间:2019-03-03 09:36:08      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:color   nbsp   als   net   sorted   ber   art   log   string   

 

target:  numbers = [‘2‘, ‘4‘, ‘1‘, ‘3‘]

numbers = list(map(int, numbers))

排序:

从小到大排序:

numbers = sorted(numbers, reverse = False)

从大到小排序:

numbers = sorted(numbers, reverse = True)

 

 

参考:

https://blog.csdn.net/liao392781/article/details/80592761

将列表中的元素转化为数字并排序

标签:color   nbsp   als   net   sorted   ber   art   log   string   

原文地址:https://www.cnblogs.com/sea-stream/p/10463726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!