Python Course PPT
Python Course PPT
o TUSHAR BHATT
TEACH A COURSE 3
Conditional Statements Looping structures (for, Functions and their usage
while)
(if, elif, else)
TEACH A COURSE 4
Lists:
•Description: An ordered collection of items that can be of different data types.
•Usage: Used for storing and manipulating sequences of data.
Code
Tuples:
•Description: Similar to lists but immutable (elements cannot be changed after creation).
•Usage: Suitable for fixed collections where the order matters but the data should not be
modified.
Code
Usage: Ideal for fast lookup operations and associating values with specific keys.
Strings:
Description: Sequences of characters; immutable like tuples.
TEACH A COURSE 6
Classes in Python:
•Definition: A class is a blueprint for creating objects. It
defines a data structure that bundles data and functions
that operate on the data into a single unit.
•Usage: Classes are used to model real-world entities and
represent them in code. They encapsulate attributes (data)
and methods (functions) that operate on the data.
Inheritance in Python:
•Definition: Inheritance is a mechanism where a new
class (subclass or derived class) inherits properties and
behaviors from an existing class (base class or parent
class).
•Usage: It allows code reuse and the creation of a
hierarchy of classes. The subclass can extend or override
the functionality of the superclass.
Sensitivity: Business Internal
THE PROJECT: Attendance Monitoring
Through Facial Recognition
UPPER HAND : It can be helpful for any status updation
(here attendance) by the facial data taken as input and is faster
and more accurate than the typical manual way.
WORKING :
• It works on python and its 2 libraries Numpy and Opencv .
8
Conclusion
This Python course has been an insightful
journey.