标签: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)
标签:else class coding 列表 style 创建 print int bsp
原文地址:https://www.cnblogs.com/sunnybowen/p/10230970.html