0

Python 3x not working

Hello, I'm new user on Python. I recently installed Python 3x but it's not working. It's not printing anything via 'print' command, No calculations i.e. 2+3 etc. It's doing nothing.

10th Feb 2017, 1:59 AM
ukhalid
ukhalid - avatar
3 Answers
+ 7
In Python 3.x print is no longer a command. It's a function now. You have to go with: print(2 + 3)
10th Feb 2017, 10:27 PM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 2
Are you trying to use Python from the command line, or are you using IDLE?
10th Feb 2017, 2:44 AM
DaemonThread
DaemonThread - avatar
0
Curry, Thank you for your reply. I'm using IDLE.
11th Feb 2017, 5:11 AM
ukhalid
ukhalid - avatar