2018年10月9日
摘要: a = list('nihao') # 列表的遍历 print(a) for i in a: print(i) b = tuple('12323') # 元组的遍历 print(b) for i in b: print(i) c = set('kjkjhg') # 集合的遍历 print(c) fo 阅读全文
posted @ 2018-10-09 02:53 詫秺 阅读(122) 评论(0) 推荐(0) 编辑