摘要:
访问字典中的值 alien_0 = {'color': 'green'} print(alien_0['color']) 返回内容 green 添加键-值对 alien_0 = {'color': 'green', 'points': 5} print(alien_0) alien_0['x_pos 阅读全文
摘要:
Python判断list是否为空 方式一 list_temp = [] if list_temp: # 存在值即为真 else: # list_temp是空的 方式二 list_temp = [] if len(list_temp): # 存在值即为真 else: # list_temp是空的 以上 阅读全文