def ListStore(*str_collection): #collect arguments passed into str_collection which is a tuple for s in str_collection: print(s)ListStore("A","B","C")输出:>>> ABCstr_collection 具有类型:>>> <type 'tuple'>