Python List 基础学习

list&tuple&dict

list

list 常见操作

初始化:

list1 = [123, 'abc', 4.56, ['inner', 'list'], 7-9j]

list2 = [None, 'Something to see here']

emptylist=[]

list 位置 or index

list1 = [123, 'abc', 4.56, ['inner', 'list'], 7-9j]
正向算0 1 2 3 4, 反向过来的位置就是 -1 -2 -3 -4 -5 [反向是从-1开始算起的哟!]

list 切片:

tips: list1[start

上一篇:Print2flash在.NET(C#)64位中的使用,即文档在线预览


下一篇:document.write : 什么是在html输出中使用,什么是文档加载后使用?