Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/izzatkarimov/mypythonnotes
π My Python Notes - My notes on the key concepts of Python.
https://github.com/izzatkarimov/mypythonnotes
python-learning python3
Last synced: 4 days ago
JSON representation
π My Python Notes - My notes on the key concepts of Python.
- Host: GitHub
- URL: https://github.com/izzatkarimov/mypythonnotes
- Owner: izzatkarimov
- Created: 2024-06-17T01:25:34.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-05T20:33:38.000Z (6 months ago)
- Last Synced: 2024-07-06T01:41:29.941Z (6 months ago)
- Topics: python-learning, python3
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# π My Python Notes
> My Python Notes - My notes on the key topics of Python.
## πΊοΈ Table of Contents
Introduction to Python
### Table of Contents
- [What is Python]()
Advanced Concepts in Python
### Table of Contents
Django
### Table of Contents
#### β‘οΈ _What is Python_?
- Python is an interpreted, interactive, object-oriented programming language. It incorporates modules, exceptions, dynamic typing, very high level dynamic data types, and classes. Its design philosophy emphasizes code readability with the use of significant indentation. Python is dynamically-typed and garbage-collected. In more details, Python has the following characteristics:
- High-Level Language
- Interpreted Language
- Dynamically Typed
- Object-Oriented
- Readability and Simplicity
- Extensive Standard Library
- Cross-platform
- Versatile and multi-paradigm
- Interpreted and Interactiveβ¬οΈ [**Back to Top**](#contents)