+ 2
What's wrong with this python code
Print ("hello world");
5 Réponses
+ 4
It is print, not Print. Also, remove the space between print and ()
+ 1
It starts from a lowercase 'p' not uppercase 'P'.
print("Hello world!")
And it is print() not print ()
0
print("hello world")
errors:
1. P is capital ; python is case sensitive -> Print and print are different
2. print() is a function no space between keyword and parentheses
3. semicolon in python is not supported terminating of statement is done through (new line).
0
Please make lower p not P
0
First syntax error it should be print() not Print () because py is case sensitive language ..
And Second is..
In python we not need semicolon ( ; ) at end of the line..