This repository covering four basic parts in python. namely:
- OOP Basics
- Data Structures
- File Exception
- Unit Testing
The OOP concepts from python is simply mapped with SchoolMember of the school. The following OOP principle will be covered:
- Class
- Object
- Inheritance
- Polymorphism (Will cover only Method overriding)
- Data Hiding
Covering the three built-in data structures in Python - list, tuple and dictionary from in module builtin. In the Given Program :
- List is mapped with shopping list
- Tupple is mapped with Animal in zoo
- Dictionary is mapped with name and corresponding Emails
This program will cover File and Exception handling on files.
This program will cover Elementory unit testing.