https://github.com/hillaryjude/learn-python-from-scratch-part4-oops
Here we will see what zip, functions, oops, class and enumerate functions with examples. If you are someone who is starting to learn OOPs concept in python from scratch refer to this file, also feel free to google for additional resources for better understanding.
https://github.com/hillaryjude/learn-python-from-scratch-part4-oops
class enumerate oops-in-python private-variables-and-functions zip
Last synced: 10 months ago
JSON representation
Here we will see what zip, functions, oops, class and enumerate functions with examples. If you are someone who is starting to learn OOPs concept in python from scratch refer to this file, also feel free to google for additional resources for better understanding.
- Host: GitHub
- URL: https://github.com/hillaryjude/learn-python-from-scratch-part4-oops
- Owner: hillaryjude
- Created: 2025-01-01T05:35:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-01T05:50:23.000Z (about 1 year ago)
- Last Synced: 2025-01-29T03:58:09.429Z (12 months ago)
- Topics: class, enumerate, oops-in-python, private-variables-and-functions, zip
- Language: Jupyter Notebook
- Homepage:
- Size: 741 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
## Oops 1
### Table of Contents
1. ZIP()
2. Enumerate
3. Class
This repository contains a Jupyter Notebook named `OOPS-1.IPYNB`. The notebook covers the following topics:
- **ZIP()**: Demonstrates the usage of the `zip()` function in Python, which is used to combine two or more iterables (e.g., lists, tuples) into a single iterable of tuples.
- **Enumerate**: Explains the `enumerate()` function, which adds a counter to an iterable and returns it as an enumerate object.
- **Class**: Provides an introduction to classes in Python, including how to define and use them.
## Oops 2
This section is reserved for future content related to the second part of the Oops series. Stay tuned for updates!
### Topics Covered
- Abstraction
- Inheritance
- Private variable
- Operator level polymorphism