Our first program will print the classic “hello world” message. Here's the full source code in file hello-world.py.
print
(
"hello world"
)
Now, just run it using python3 hello-world.py You should see the output "hello world"