0
Basic Python
So I just started this course and I'm a little confused on the 3rd lesson haha... It says I can directly enter a math problem into the console and it'll solve it on the output area. Entered: 5+5 There was "No Output." What am I doing wrong?
3 Antworten
+ 1
if you want it to print you need to enter:
print(5+5)
0
but if you work on the python command line i think the 5 + 5 does work
0
You should have wrote:
print(5+5)
The print statement is used to show what you require into the console