List,Tuple,Set,Dictionary学习提要
摘要:
``` # 列表 List list1 = [1, 2, 3, 4, 6] print(type(list1)) print(len(list1)) print(max(list1)) # 注意事项 a = [1] print(type(a)) print('*' * 50) # 元组 tuple tuple1 = (5, 6, 7, 8) print(type(tuple1)) # 注... 阅读全文
posted @ 2019-03-05 14:23 Indian_Mysore 阅读(62) 评论(0) 推荐(0) 编辑