Getting Started With Python
Run Your First Python Script
Simply enter the code below, and click the green triangle “run” button in the top (fifth from the left) to see the words “hello world” printed in the console.
You’ve now just run your first Python code, think of the console as if you just mailed a letter, and the recipient’s mailbox is what the console is.
Code:
print('hello world')