Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)