在python中,list变量前面加星号、字典变量前面加两个星号,
比如:
list1 = [1,2,3,4]list2 = [123,423,*list1]
list2为[123,423,1,2,3,4]
举例: