关于print('hello,', 'python.')输出结果是 ('hello,', 'python.'),而不是hello, python.
代码:
print('hello, python.')
print'hello,', 'python.'
print('hello,', 'python.')
输出:
hello, python.
hello, python.
('hello,', 'python.')
问题:
最后python3里面加上括号,为什么输出不是 hello, python 而是 ('hello,', 'python.')