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的数字放在字典中的主要内容,如果未能解决你的问题,请参考以下文章