https://github.com/code-lucidal58/python_inception
Cheatsheet for python basics
https://github.com/code-lucidal58/python_inception
python-cheatsheet python-examples python-library python3
Last synced: 6 months ago
JSON representation
Cheatsheet for python basics
- Host: GitHub
- URL: https://github.com/code-lucidal58/python_inception
- Owner: code-lucidal58
- Created: 2018-12-13T08:39:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-04T11:53:05.000Z (over 4 years ago)
- Last Synced: 2025-01-16T05:55:44.072Z (11 months ago)
- Topics: python-cheatsheet, python-examples, python-library, python3
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Inception
Python is a dynamically written object-oriented programming language.
The tutorials are in the sequence of the file name. Sample scripts are located in examples folder. Python used in this
repository is CPython, that is python interpreter written in C. The code written using Python is compiled in runtime.
The same compiled code is reused multiple times. Hence, Python optimises the execution. For example, constant expressions
and sequences with length less than 20 characters are precalculated and stored.
Version: 3.8.x
***Sources: PluralSight, Hackerrank, LinkedIn Learning, Edx, Udemy***
## Index
The beginner concepts are explained using markdown as well as python code. The sequence is as follows:
* [Basic Operations](basic_operations.md)
* [Data Types](data_types.md)
* [Loop and Conditional](loop_conditionals.md)
* [Date and Time](date_time.md)
* [Functions](functions.md)
* [File Handling](file_handling.md)
* [Web Data Handling](web_data_handling.md)
* [Object Oriented Programming 1](oop_1.md)
* [Object Oriented Programming 2](oop_2.md)
* [Memory Management](memory_management.md)