Basics
Hello World
Every Python program starts by executing statements from top to bottom. Calling print() is the smallest useful program because it shows how Python evaluates an expression and sends text to standard output.
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.