摘要: #字符串str = 'abcd123'for i in str: print(i)#列表list = ['Hello', 'World', 444]for i in list: print(i)#元组tuple = ('Hello', 'World',444)for i in tuple: prin 阅读全文
posted @ 2018-03-22 16:50 120林海鑫 阅读(69) 评论(0) 推荐(0) 编辑