橘子味的心
标题:Python3 列表List Append 方法

Python3 列表List Append 方法

#!/usr/bin/python3

list1 = ['C++', 'Java', 'Python']
list1.append('C#')
print ("updated list : ", list1)

目录

分类