Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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: str

Numeric 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.