https://github.com/vinibiavatti1/pythonguide
A guide repository for anyone who wants to learn python from scratch!
https://github.com/vinibiavatti1/pythonguide
guide learning-python python python-tutorial tutorial
Last synced: 6 months ago
JSON representation
A guide repository for anyone who wants to learn python from scratch!
- Host: GitHub
- URL: https://github.com/vinibiavatti1/pythonguide
- Owner: vinibiavatti1
- Created: 2021-02-10T18:17:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-26T16:51:10.000Z (over 1 year ago)
- Last Synced: 2024-06-26T20:28:54.712Z (over 1 year ago)
- Topics: guide, learning-python, python, python-tutorial, tutorial
- Language: Python
- Homepage:
- Size: 675 KB
- Stars: 9
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Python Guide
A guide repository for anyone who wants to learn python from scratch!
### Purpose
The purpose for the project is to provide a resource to be used as a guide for learning Python. There are many source codes with different Python concepts that can be checked and followed in your learning. I decided to share it because one of my goals with the knowledge I will conquist is to share and help the people enjoy it!
### Guide
You can find many source files with informations and examples of some Python concepts in the guide folder. Sometimes, I will update this project with more information.
### IDE
I used VSCode as IDE to programming in Python, but you can use any IDE you want. It is up to you. In the config folder, I put some files explaining how to configurate VSCode to start with Python, to ensure that the PEP8 will be followed correctly. In the project there is a `.editorconfig` file with some IDE settings to keep the same configurations for your IDE. For this, you must install the `editorconfig` extension in your environment.
```python
def lets_learn_python(answer):
if answer is True:
print('So, lets go!')
lets_learn_python(True) # or of course!
```