The most basic boilerplate to start a Python project at 4Geeks is to start your very first Python project from scratch.
Open the main.py
file and start writing your code.
Execute your code by typing the following command on your terminal:
$ python main.py
You can create and include as many python files (a.k.a. modules) as you want using the import statements.
Make sure you have Python installed in your computer. We strongly recommend installing Python through Pyenv to avoid version conflicts in the future.
This template was built as part of the 4Geeks Python Resources for learning at 4Geeks.com by Alejandro Sanchez and many other contributors.