Python 2.7.10 has no function print()unless you import it. Adding brackets does not turn it into a function, it just indicates the grouping. If you try to simulate the transfer of multiple objects, it will print tuple.
>>> print 1
1
>>> print (1)
1
>>> print 1,2
1 2
>>> print (1,2)
(1, 2)
, print, Python 2 3, - , , . print (1,2) Python 3 , print 1,2 Python 2. , ( Python 2 3, Python 2):
>>> from __future__ import print_function
>>> print (1,2)
1 2