https://github.com/joehunterdev/100-days-of-python
https://github.com/joehunterdev/100-days-of-python
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joehunterdev/100-days-of-python
- Owner: joehunterdev
- Created: 2023-04-14T22:13:45.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-09T21:26:10.000Z (about 2 years ago)
- Last Synced: 2025-01-15T21:39:12.917Z (5 months ago)
- Language: Python
- Size: 150 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Python General
- [] When to use super() init class
- [] Use of main loop
- [] Windows you must enable path to scripts C:\Users\{pc_name}\AppData\Local\Programs\Python\Python311\Scripts\pip.exe" install pandas
- [] You can install using vs manage extensions
>
> **Super ()** makes class inheritance more manageable and extensible. The super keyword refers to superclass (parent) objects. It is used to call superclass methods, and to access the superclass constructor. The most common use of the super keyword is to eliminate the confusion between superclasses and subclasses that have methods with the same name