+ 1
I am still trying to print hello world but i'm still getting errors someone please help me
3 Réponses
+ 3
print("hello world")
See the quotation marks...
See that you are making your code on python only and not other language....
And lastly, the 'p' of print should be lowercase
+ 3
it's simple as this:
print('hello world')
please provide us with the code link in the question description so we can debug it easier
+ 2
In python 3 print is introduced as a function which will print anything.
So for that you need to call the print function like this print()
And then pass what you want to print as a parameter.
For example HELLO WORLD but take care that hello world is a sentence ( string in programing )
So you need to tell compiler that this a string by simply enclosing in 'hello world' (single quote) or "hello world" (double quote)
And if you want to print integer or a decimal no then just write it simply