摘要: '''字符串''' str = "This is a string" for i in str: print(i) '''列表''' list = ['a','b','c','hasee'] for i in list: print(i) '''元组''' tup = ('a','b',123,'hasee') for i 阅读全文
posted @ 2018-03-22 20:04 097黄大贞 阅读(114) 评论(0) 推荐(0) 编辑