RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
python列表排序

代码如下:

我们提供的服务有:成都做网站、成都网站制作、微信公众号开发、网站优化、网站认证、宿州ssl等。为1000多家企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的宿州网站制作公司

def getprice(item):
    # 切分,获取名字与价格
    name,price=item.split(":")
    # 字符串转整数,并返回
    return int(price)
phoneprice = '魅族X8:1798,红米6:849,荣耀8X:1399,小米8:2499,小米8SE:2099,荣耀畅玩7A:699'
# 字符串切分
items=phoneprice.split(",")
print(items)
# 按照价格从小到大排序
items.sort(key=getprice)
print(items)

执行结果:
python列表排序


当前文章:python列表排序
文章来源:http://scpingwu.com/article/ghhdop.html