This project lays a foundation for the usage and utilities of python. It is like a course that you can go through at your own speed. As I create this course, I am solidifying my knowledge about python. I hope that you will be able to learn and apply python after going through this course.
note: Feel free to still compile the code yourself and check the result, even if a comment with the result it given.
Also: If anything needs more explanation feel free to open an issue, discussion or contact me directly (via the email referenced on my profile). Or contribute directly (see bottom of README).
Follow these instructions to clone this repository on your local machine. I will explain how to get set it up in VSCode, any other IDE should be similar.
Open a terminal.
Navigate to the directory where you want to clone the project. Either in your explorer/file manager, i.e for linux:
cd /home/user/my-python-project
Use the following command:
git clone https://github.com/Lemonatix/how-to-python.git
or with SSH:
git clone git@github.com:Lemonatix/how-to-python.git
You copy these command lines on the <> Code button aswell.
File
> Open Folder...
(on macOS, this will be File
> Open...
).View
> Terminal
to open an integrated terminal in VS Code.git status
or any project-specific scripts.If you would like to contribute, please follow these steps:
git checkout -b some-name
.git commit -m 'adds some features'
.git push origin some-name
.Thank you in advance and have fun coding!
note: This course was created with the help of Python Examples.