课后习题
定义一个列表 list1 和元组 tuple1,当 tuple1 作为字典 dict1 的键时,是否能够成功定义字典?请说明原因。执行后,观察执行结果。
list1 = [ 1, 2, 3] tuple1 = ( 'abc', list1 ) print( type( tuple1 )) dict1 = { tuple1, 1 } # 此语句是否能够正确执行?
课程代码、课件及其他相关资料地址
https://gitee.com/wilsonyin/zero-basics-python