为什么只有字符串应该打印时才会打印打印功能中的整个参数以及paranthesis
这是Python 2.7.9
import os
alist = [ 'A' ,'B']
print('Hello there')
print('The first item is ',alist[0])
print('Good Evening')
root@justin:/python# python hello.py
Hello there
('The first item is ', 'A')
Good Evening
Run Code Online (Sandbox Code Playgroud) python ×1