在 Python 中,可以使用append()方法向一个列表的尾部追加一个元素,其基本语法如下:
source_list.append(obj)
其中:
source_list:待修改的列表;
obj:待插入的元素。
例题:
#列表的创建
list1 = ['中国','美国',1997,2000]
#添加
list1.append(2008)
print(list1)
运行结果:
在 Python 中,可以使用append()方法向一个列表的尾部追加一个元素,其基本语法如下:
source_list.append(obj)
其中:
source_list:待修改的列表;
obj:待插入的元素。
例题:
#列表的创建
list1 = ['中国','美国',1997,2000]
#添加
list1.append(2008)
print(list1)
运行结果: