Title here
Summary here
Our first program will print the classic “hello world” message. Here’s the full source code.
To run the program, save the code in a file named hello_world.py
and use the python
command.
Sometimes we’ll want to create an executable for our Python programs. We can do this using tools like pyinstaller
.
First, install pyinstaller
if you haven’t already:
Then create an executable:
We can then execute the built binary directly.
Now that we can run and build basic Python programs, let’s learn more about the language.