I am still trying to print hello world but i'm still getting errors someone please help me | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I am still trying to print hello world but i'm still getting errors someone please help me

29th May 2020, 4:54 PM
Rufaro Bunhu
Rufaro Bunhu - avatar
3 Answers
+ 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
29th May 2020, 4:55 PM
Namit Jain
Namit Jain - avatar
+ 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
29th May 2020, 4:55 PM
Sebastian Pacurar
Sebastian Pacurar - avatar
+ 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
29th May 2020, 5:39 PM
Ayush Kumar
Ayush Kumar - avatar