i'm new in the python world and i have small issue. im trying to run this action for example:
print ('Hello World')
print('1','2')
But i'm getting this output:
Hello World
('1','2')
Why the second row is not showing properly?
I'm using a mac laptop with python version 2.7
Thanks for the help.
print ('Hello World')for avoiding formatted text problems.