摘要:
元组与列表一样,也是一样序列,唯一的不同是元组不能修改 如果用逗号分隔了一些值,那么你就自动创建了元组 >>> 3 * (40 + 2)126>>> 3 * (40 + 2,)(42, 42, 42) tuple 以一个序列作为参数并把它转换为元组 >>> tuple([1,2,3])(1, 2, 阅读全文
摘要:
list('hello')['h', 'e', 'l', 'l', 'o'] 操作方法: 1.改变例表:元素赋值 x = [1, 1, 1]x [1] = 2x[1, 2, 1] 2. 删除元素 names = ['tu','dong', 'nana', 'test']names['tu', 'do 阅读全文
摘要:
通用序列操作:索引:greeting=hellogreeting[0]分片:number[1,2,3,4,5,6]number[3:6]number[3:6:1]序列相加:[1,2,3] + [4,5,6][1,2,3,4,5,6]乘法'p' * 5'ppppp'成员次格:permissions = 阅读全文