Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shubhampatel81/python_code
There is some python code
https://github.com/shubhampatel81/python_code
python
Last synced: about 1 month ago
JSON representation
There is some python code
- Host: GitHub
- URL: https://github.com/shubhampatel81/python_code
- Owner: ShubhamPatel81
- Created: 2023-07-08T23:12:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-15T08:16:45.000Z (over 1 year ago)
- Last Synced: 2024-11-08T14:47:30.010Z (3 months ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python_code
Python is a high-level, interpreted programming language known for its simplicity and readability. It was created by Guido van Rossum and first released in 1991.
It is used for:
web development (server-side),software development,mathematics and system scripting.## Data Types in Python
Text Type: strNumeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
None Type: NoneType
## Python Inheritance
A class that inherits all the methods and properties from another class.
Parent class is the class being inherited from, also called base class.
Child class is the class that inherits from another class, also called derived class.## Polymorphism
"polymorphism" means "many forms" - It refers to methods/functions/operators with the same name that can be executed on many objects or classes.