Python Hello World
In Python, the "print" statement is used to
display something to the user.
We can use either double quotes or single quotes within the print statement.
Parenthesis is important.
print ("Hello World")
print ('Hello World')
Press Run to execute.
When we seperate two strings using a coma(,) each one separatly is called an argument.
In this case we can identify two arguments.
print ("Hello","World")
print ('Hello','World')
Press Run to execute.