Python(39)_选出列表中的大于66的数字放在字典中

Posted sunnybowen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python(39)_选出列表中的大于66的数字放在字典中相关的知识,希望对你有一定的参考价值。

#-*-coding:utf-8-*-
‘‘‘

‘‘‘
li = [11,22,33,44,55,66,77,88,99]
dic = {}
l_greater = []
l_smaller = []
for i in li:
    if i ==66:
        continue
    if i>66:
        l_greater.append(i)
    else:
        l_smaller.append(i)
print(l_greater)
print(l_smaller)
# 放到字典里
dic.setdefault(k1,l_smaller)
dic.setdefault(k2,l_greater)
print(dic)

技术分享图片

 

以上是关于Python(39)_选出列表中的大于66的数字放在字典中的主要内容,如果未能解决你的问题,请参考以下文章

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

python如何从字符串中筛选出包含词最多的那个字符串呢!

'k1': 大于66的所有值, 'k2': 小于66的所有值

python之道02

python_队列

Python第三天:可变类型与不可以变类型变量赋值列表元组字典