摘要: a = 'hello' print(a) for i in a: print(i) s = 'this is a string hello' ls = s.split() print(ls) for i in ls: print(i) tup = ('LiLi', 'Jack', 21); print(t) for i in t: print(i) names =... 阅读全文
posted @ 2018-03-22 20:13 106-李派活 阅读(115) 评论(0) 推荐(0) 编辑