2018年3月22日
摘要: 字符串: str = 'china' for i in str: print(i) 列表: s= ['a','b','c','d','e','f'] for i in s: print(i) 元组: tu= ('physics', 'chemistry', 1997, 2000); for i in 阅读全文
posted @ 2018-03-22 21:14 121林伟聪 阅读(122) 评论(0) 推荐(0) 编辑