python字典的使用
2019-01-29 本文已影响0人
今天天气很好嗯
字典以及元组的使用:
元组 数据 不可变
tuple = (1,'我了去',12.65)
print('tuple的值',tuple)
print('字典~~~~~~~~~~~~~~~')
dict = {'name':'weather','age':20}
print('dict',dict['name'])
字典以及元组的使用:
元组 数据 不可变
tuple = (1,'我了去',12.65)
print('tuple的值',tuple)
print('字典~~~~~~~~~~~~~~~')
dict = {'name':'weather','age':20}
print('dict',dict['name'])