元组和字典

color_list=['red','green','blue']
mytuple = (1,2,3,abc) #元组是不可变的  ; tuple  [tʌpl] 
tinydict = {'name':'john','code':5762,'dept':'sales'} #列表是有序的对象结合,字典是无序的对象集合;两者之间的区别在于:字典当中的元素是通过键来存取的,而不能通过偏移存取
字典由索引(key)和它对应的值value组成,用 : 连接。字典,存储键值对

dict = {}
dict['one'] = 'This is one'
dict[2] = 'This is two'
tinydict = {'name':'john','code':5762,'dept':'sales'} 
print(dict['one']) #输出键为'one'的值
print(dict[2]) #输出键为2的值
print(tinydict) #输出完整的字典
print(tinydict.keys()) #输出所有键
print(tinydict.values()) #输出所有值

  

posted @ 2023-04-23 15:42  sangern  阅读(27)  评论(0编辑  收藏  举报