python建立列表和向列表新增元素方法

2022-01-29 11:46:43 字數 1066 閱讀 3141

一.建立列表

1.建立乙個普通列表

>>> tabulation1 = ['大聖','天蓬','捲簾']

>>> tabulation1

['大聖', '天蓬', '捲簾']

>>> tabulation2 = [72,36,18]

>>> tabulation2

[72, 36, 18]

2.建立乙個混合列表

>>> mix tabulation = ['大聖',72,'天蓬',36]

syntaxerror: invalid syntax

>>> mixtabulation = ['大聖',72,'天蓬',36]

>>> mixtabulation

['大聖', 72, '天蓬', 36]

3.建立乙個空列表

>>> empty = 

>>> empty

三種方式就介紹給大家了,接下來,如果想向列表中新增元素,該怎麼辦呢?

二.向列表中新增元素

2.extend

>>> tabulation1.extend(['紫霞','青霞'])

>>> tabulation1

['大聖', '天蓬', '捲簾', '紫霞', '紫霞', '青霞']

有關於用extend拓展列表的方法,大家需要注意的是,此方法是用列表去拓展列表,而不是直接新增元素,所以「()」中要加上「」。

3.insert

>>> tabulation1.insert(1,'紫霞')

>>> tabulation1

['大聖', '紫霞', '天蓬', '捲簾', '紫霞', '紫霞', '青霞']

不想在原地混吃等死,所以我選擇每天進步一點點。

Python向列表中插入元素 列表

python列表中的元素種類可以是相同的也可以是不同的,如 num 1 2 3 4 str python 1 中國 nmu 1 2 3 4 str python 1 中國 phone 諾基亞 三星 oppo 華為 print phone 諾基亞 三星 oppo 華為 2 extend 在列表末尾新增...

python列表建立操作 python列表操作

建立列表 sample list a 1,a b python 列表操作 sample list a b 0,1,3 得到列表中的某乙個值 value start sample list 0 end value sample list 1 刪除列表的第乙個值 del sample list 0 在列...

python列表建立操作 python列表操作

列表是最常用的python資料型別,它可以作為乙個方括號內的逗號分隔值出現。列表的資料項不需要具有相同的型別。如 list a b 2,5,1 1 新建列表 stus 建立空列表 stus1 list 建立空列表 print stus print stus1 stus 范冰冰 維達 soon 上述 ...