摘要: 访问字典中的值 alien_0 = {'color': 'green'} print(alien_0['color']) 返回内容 green 添加键-值对 alien_0 = {'color': 'green', 'points': 5} print(alien_0) alien_0['x_pos 阅读全文
posted @ 2022-06-10 15:15 摩天居士-谢烟客 阅读(35) 评论(0) 推荐(0) 编辑
摘要: Python判断list是否为空 方式一 list_temp = [] if list_temp: # 存在值即为真 else: # list_temp是空的 方式二 list_temp = [] if len(list_temp): # 存在值即为真 else: # list_temp是空的 以上 阅读全文
posted @ 2022-06-10 14:17 摩天居士-谢烟客 阅读(28) 评论(0) 推荐(0) 编辑