python3中的List

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3中的List相关的知识,希望对你有一定的参考价值。

List(列表) 是 Python 中使用最频繁的数据类型, 类似于javaScript中的数组

 

listone = [ abcd, 786 , 2.23, Python, 70.2 ]

listtwo = [123, Python]

 

print( listone)  # 输出列表

print( listone[0] )  # 输出列表的第一个元素

print( listone[1:3])  # 输出列表下标1到3的列表元素

print( listone[2: ]  # 输出列表下标为2及后面的所有列表元素

print( listone * 2)  # 在一个数组里面重复输出数组两遍

print( listone + listtwo)  # 数组进行相加输出

 

与Python字符串不一样的是,列表中的元素是可以改变的:

a = [1, 2, 3, 4, 5, 6]
 a[0] = 9  # 将列表的第一个元素改成9
 a[2:5] = [13, 14, 15]  # 将列表小标为2,3,4 的列表元素修改为13, 14, 15
print( a)    # 得到的列表为 [9, 2, 13, 14, 15, 6
 
 a[2:5] = []  # 删除下标为2,3,4的列表元素
 print(a) # 得到的列表a为  [9, 2, 6]

以上是关于python3中的List的主要内容,如果未能解决你的问题,请参考以下文章

Python3中的运算符

python3中的SMTP简记

python3 中的bytes类型

Python3 中的map

python3返回值中的none

Python3中的编码