标签:列表 方式 error 怎么办 元素 创建 有关 直接 erro
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
[]
三种方式就介绍给大家了,接下来,如果想向列表中添加元素,该怎么办呢?
1.append
>>> tabulation1.append(‘紫霞‘)
>>> tabulation1
[‘大圣‘, ‘天蓬‘, ‘卷帘‘, ‘紫霞‘]
2.extend
#Python学习交流群:531509025
>>> tabulation1.extend([‘紫霞‘,‘青霞‘])
>>> tabulation1
[‘大圣‘, ‘天蓬‘, ‘卷帘‘, ‘紫霞‘, ‘紫霞‘, ‘青霞‘]
有关于用extend拓展列表的方法,大家需要注意的是,此方法是用列表去拓展列表,而不是直接添加元素,所以“()”中要加上“[]”。
3.insert
>>> tabulation1.insert(1,‘紫霞‘)
>>> tabulation1
[‘大圣‘, ‘紫霞‘, ‘天蓬‘, ‘卷帘‘, ‘紫霞‘, ‘紫霞‘, ‘青霞‘]
标签:列表 方式 error 怎么办 元素 创建 有关 直接 erro
原文地址:https://www.cnblogs.com/python960410445/p/14593799.html