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

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.

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