python中所有print函数对列表进行输出,具体方法如下:
>>> L = [1,2,'a'] # 输出列表 >>> print(L) [1, 2, 'a']
>>> L = [1,2,'a'] # 输出列表
>>> print(L)
[1, 2, 'a']