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

Python(54)_大于66的分组存放在字典里

时间:2019-01-07 01:38:37      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:else   class   coding   列表   style   创建   print   int   bsp   

#-*-coding:utf-8-*-
‘‘‘
分别放在列表里
‘‘‘
li = [11,22,33,44,55,66,77,88,99,110]
result ={}
for row in  li:
    if row>66:
        if key1 not in result:  # 如果不在,就创建键值对,空列表
            result[key1] =[]
        result[key1].append(row)
    else:
        if key2 not in result:  # 如果不在,就创建键值对,空列表
            result[key2] = []
        result[key2].append(row)
print(result)

 

Python(54)_大于66的分组存放在字典里

标签:else   class   coding   列表   style   创建   print   int   bsp   

原文地址:https://www.cnblogs.com/sunnybowen/p/10230970.html

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