Basics
Hello World
The whole program is one statement. Python evaluates the string literal "hello world" and passes that value to print(), which writes it to standard output — the output panel shows exactly that line.
Source
print("hello world")Output
hello worldNotes
print()writes text followed by a newline.- Strings can be delimited with single or double quotes.
See also
Run the complete example
Expected output
hello world
Execution time appears here after you run the example.