0
Why do we have to repeat the lines?
Print( Hello World ) Print( Hello World ) Print ( whatever) do we have to make it on this way each time we write a code ? or just one time can be enough? I'm confused a little bit because my first step of learning programs was with C# and I really gave up.
3 Answers
+ 1
you can use print function as many times as you want. it's just a communication between program and user. use it when it is needed, course only shows you that you can execute any command anytime.
+ 1
Please note its print and not Print
You can call it as many times as you want
The way it is in your code is wrong if you want to print Hello world do like this
print("hello world")
If you don't put the " " the words in between () are considered to be strings
0
Thanks for you all that was really heplful !