list 字符串的输出方法
a = [1,2,3,3,4,5]
1、print(*a)
元素之间都存在空格;
2、把list中的元素,当成字符串挨着输出:
print("".join(str(c) for c in a) )