Python 创建空的list,以及append用法讲解
Python中list的用法:如何创建list,如何表达list中的元素,如何修改和删除list
运行环境:Python 3.6.2
0.空list的创建:
l = list()
或者:
l = []
1.list中元素的创建和表达
fruits = ['apple', 'banana', 'pear', 'grapes', 'pineapple', 'watermelon'] fruits[2] #从0开始数起,第三个元素 pear
2.list中元素的更改
fruits[2] = 'tomato' print(fruits) ['apple', 'banana', 'tomato', 'grapes', 'pineapple', 'watermelon']
3.在list末尾增加更多元素
fruits.append('eggplant') print(fruits) ['apple', 'banana', 'tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant']
4.如何截取list中的某一段
print(fruit[: 2]) #从list的首元素开始截取,截取到位置'3',但不包括第3个元素 ['apple', 'banana']
5. 如何更改list中连续的元素
fruits[:2] = ['a', 'b'] print(fruits) ['a', 'b', 'tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant']
6.如何删除list中某段元素,或者全部list
fruits[:2] = [] #删除前两个元素 print(fruits) ['tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant'] fruits[:] = [] #删除全部list元素 []
相关推荐
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
pythonjw 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16