大家好,又见面了,我是你们的朋友全栈君。
python append描述
append函数可以在列表的末尾添加新的对象。函数无返回值,但是会修改列表。
append语法
list.append(object)
名称 说明 备注
list 待添加元素的列表
object 将要给列表中添加的对象 不可省略的参数
3 examples to append list in python
append举例
1. 给列表中添加整数、浮点数和字符串:
test = [‘Python’, ‘C’, ‘Java’]
test.append(5)
test.append(23.6)
test.append(‘HTML’)
print(test)
输出结果为:
[‘Python’, ‘C’, ‘Java’, 5, 23.6, ‘HTML’]
2. 给列表中添加列表、元组和字典:
test = [‘Python’, ‘C’, ‘Java’]
test.append([‘Windows’, 2018, ‘OpenStack’])
test.append((‘Huawei’, ‘Tencent’))
test.append({‘Nova’:‘virtual compute service’, ‘Neutron’:‘net service’})
print(test)
输出结果为:
[‘Python’, ‘C’, ‘Java’, [‘Windows’, 2018, ‘OpenStack’], (‘Huawei’, ‘Tencent’), {‘Nova’: ‘virtual compute service’, ‘Neutron’: ‘net service’}]
3. 给列表中添加空元素
test = [‘Python’, ‘C’, ‘Java’]
test.append(None)
print(test)
输出结果为:
[‘Python’, ‘C’, ‘Java’, None]
注意事项
object参数不能省略,否则Python会报错:
test = [‘Python’, ‘C’, ‘Java’]
test.append()
print(test)
Traceback (most recent call last):
File “/Users/untitled3/Test2.py”, line 3, in
test.append()
TypeError: append() takes exactly one argument (0 given)
如果想给列表末尾添加空元素,应该将参数写为None
3 examples to append list in python
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/149075.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...