Unit 3 Python
Unit 3 Python
Files
Types of files
File Paths
File Methods to Read and Writing Data
Pickle Module
Reading and Writing CSV files
Object-Oriented Programming
Types of Files
1. Text Files
2. Binary Files
1.Text Files
While both binary and text files contain data stored as a series of bits
(binary values of 1s and 0s).
Text files are more restrictive than binary files since they can only contain
textual data.
A small error in a text file can be corrected after opening a text file.
Text files Python are that contain human-readable text and are encoded
using either ASCII or Unicode character sets.
Termination of each line in a text file is denoted with the end of line (EOL).
There are a few special characters that are used as EOL, but comma {J and
newlines (\n) are the most common ones.
Command Examples of Text Files:
Tabular data: csv, tsv, etc.
Documents: .txt, .tex, .rtf, etc.
Web standards: html, xml, css, json etc.
Configuration: 11M, cfg, reg, etc.
Program Source Code. .java, .c, .py, .cpp
2.Binary Files
Computer store every file as a collection of 0s and 1s i.e., in binary form.
A small error in a binary file may make it unreadable.
Binary files In Python are files that contain non-human-readable binary
data. Binary data stored a specific format and Its interpretation depends on
the type of binary file.
All binary files follow a specific format. We can open some binary files in
the normal text editor but can't read the content present Inside the file.
That's because all the binary files Will be encoded in the binary format,
which can be understood only by a specific software
Common Examples of Binary Files.
Document files: pdt, -doc
xls etc
Image files: .png, .jpg, .gif, .bmp etc.
Audio files: mp3, wav, mka, .aac etc.
Video files: .mp4, .3gp, .mkv, .avi etc.
File Paths
2.Relative Path
1.Absolute Path: An absolute file path is also called a Fully Qualified File
Path or a Complete File Path. It is called an absolute file path because it
specifies the complete and exact location of a file on a computer system.
Example: C:\\Users\Admin\PythonExamplesprogram\Demo.py
2.Relative Path: A relative file path that is relative to the current working
directory.
Example: Demo.py
Opening a File
The open () function returns a file handler object for the file
name.
File name: The first arguments is the file name.
Mode: The second arguments is the file opening mode.
Buffering: The “buffering” argument is an optional integer
argument that specifies the size of the buffer used for file I/O.
File Opening Modes
Mode Description
‘r’ Open text file for reading. Raises an I/O error if the file does not exist.
Open the file for reading and writing. Raises an I/O error if the file
‘r+’
does not exist.
Open the file for writing. Truncates the file if it already exists. Creates
‘w’
a new file if it does not exist.
Open the file for reading and writing. Truncates the file if it already
‘w+’
exists. Creates a new file if it does not exist.
Open the file for writing. The data being written will be inserted at the
‘a’
end of the file. Creates a new file if it does not exist.
Open the file for reading and writing. The data being written will be
‘a+’
inserted at the end of the file. Creates a new file if it does not exist.
Open the file for reading in binary format. Raises an I/O error if the file
‘rb’
does not exist.
Open the file for reading and writing in binary format. Raises an I/O
‘rb+’
error if the file does not exist.
Open the file for writing in binary format. Truncates the file if it
‘wb’
already exists. Creates a new file if it does not exist.
Open the file for reading and writing in binary format. Truncates the
‘wb+’
file if it already exists. Creates a new file if it does not exist.
Open the file for appending in binary format. Inserts data at the end of
‘ab’
the file. Creates a new file if it does not exist.
Open the file for reading and appending in binary format. Inserts data
‘ab+’
at the end of the file. Creates a new file if it does not exist.
Closing a File
Closing a file in Python is the process of releasing the resources associated with
the file object and saving any changes made to the files.
f. close ()
When we use the open () function a file object is created. There are lot of
methods that can be called on file object to read and write data on files.
File Object read methods are used to read data from a file in Python.
1.read ()
2.readline ()
3.readlines ()
1.read (): This Method reads the entire contents of a file as sting.
Syntax: file_Object.readline()
3.readlines (): This Method reads the entire contents of a file as a list of strings,
where each string is a line of the file.
Syntax: file_Object.readline()
lines=file. readlines ()
print(line)
1.write ()
2.writelines ()
2.writelines (): The writelines method is used to write a list of strings to a file.
file. writelines(lines)
Random Access in a File Using seek () and tell () Methods
1.tell () Method
The tell () method in Python returns the current position of the file pointer
within a file.
It returns an integer value representing the number of bytes from the
beginning of the file to the current position of the file pointer.
Syntax: file_Object.tell()
Example:
2. seek () Method
offset: is the number of bytes to move the file pointer. It can be a positive
or negative integer value.
whence is an optional parameter that specifies the starting point from
where the offset is applied.
0(default)- offset is relative to the beginning of the file.
1-offset is relative to the current position.
2-offset is relative to the end of the file.
Example:
Pickle Module
We need to import the pickle module using the import pickle statement in
a program.
1. pickle. dump () -> This method serializes an object and writes it to a file.
What is the difference between pickle. dump () and pickle. dumps ()?
pickle. dump (obj, file): This function is used to serialize the Python
object obj into a binary format and write it to the specified file object file.
It saves the pickled data to a file on disk.
pickle. dumps (obj): This function is used to serialize the Python object
obj into a binary format and return it as a string. It returns the picked data
as a string object, which can be stored in memory or transmitted over a
network.
The pickle module in Python provides the ability to serialize and deserialize
Python objects. This means that we can take a Python object, convert it into a
byte representation and store it in a file, and then recreate the object from the file.
This process is called “pickling” and “unpickling”.
import pickle
Output:
import pickle
#Define a Dictionary
data={"name":"gourav","age":23,"city":"Mysore"}
#Serialize data
pick Object=pickle.dumps(data)
#deserialize pickle_object
Output:
b'\x80\x04\x95\x00\x00\x00\x00\x00\x00\x00}\x94(\x8c\x04name\x94\x8c\x06
gourav\x94\x8c\x03age\x94K\x17\x8c\x04city\x94\x8c\x06Mysore\x94u.'
• CSV files store data in a tabular format with each row representing a
record and each column representing a field.
• The values in each record are separated by commas, which makes it easy
to extract the data.
• CSV files can store different data types, including text, numbers and
dates.
• CSV file is simple to use and can be easily transported b/w different s/w
application and platforms
1) Reading CSV data The csv. reader object can be used to read data.
2) Writing CSV data The csv. writer object can be used to write data.
3) Modifying existing CSV data we can read data from a CSV file modify,
and then write it back to the file using the csv module. useful for data cleaning.
5)Parsing CSV data with different delimiterThe csv module provides the
Dialect class, which can be used to specify the delimiter used in the CSV file.
Note: we need to import csv module using the import csv statement in a
program.
• The csv. writer object is a class from the CSV module in Python that
provides methods for writing data to a CSV file.
3) writerheader () Writes the first row of the CSV file with field names.
Example: Writing Data to CSV File Using csv. writer and writerows ()
Method
import csv
writer=csv. writer(file)
writer. writerows(data)
Output:
• The csv. reader object is a class from the CSV module in Python that
provides methods for reading data from a CSV file.
1) reader () Returns an iterator that iterates over the rows of the CSV
file. Each row is returned as a list of values.
Example:
import csv
reader=csv. reader(file)
print(row)
Output:
OOPS Concepts
• The focus of OOP is on the state and behaviour of each object, and
everything in a program is viewed as an object.
class Person:
self.name = name
self.age = age
def introduce(self):
# Create objects
# Access attributes
print(person1.name)
print(person2.age)
# Access methods
person1.introduce()
person2.introduce()
Output:
Alice
30
Object1=ClassName(constructor_arguments)
Object2=ClassName(constructor_arguments)
Rules of Constructor
• It starts with the def keyword, like all other functions in Python.
Types Of Constructors
1. Default Constructor
2. Non-Parameterized Constructor
3. Parameterized Constructor
1. Default Constructor
3. Parameterized Constructor
Encapsulation
• Encapsulation is a concept in object-oriented programming
(OOP) that refers to the process of handling data and behaviour
within a single unit or object.
• The Primary objective of encapsulation is to secure data from any
unauthorized modifications from outside sources.
• Example: Customer opens a bank account.
Advantages of Encapsulation
Protection of objects from unauthorized access.
Prevention of access to private class members by other classes.
Increased security by protecting code and logic from external inheritance.
Improved readability and maintainability through bundling of data and
methods with a single class.
Avoid accidental data modification through private and protected access
levels.
Different Ways of Achieving Encapsulation
1. Using Private Variables
Access to these variables can only be done through methods within the
class.
The Private variables are declared with two underscores in front of their
names.
Example: __variableName
2. Using Protected Variables
Protected variables can be accessed by the same class and its subclasses,
but cannot be accessed from outside the class or other subclasses.
Protected variables are denoted by a single underscore before the variable
name.
Example: _protectedVariable
3. Using Getter and Setter
The getter and setter are common techniques to achieve encapsulation
and data hiding.
A getter method is used to retrieve the value of an attribute.
A setter method is used to set the value of an attribute.
These methods can be defined within a class and can be used to control
access to the attributes of the class.
Example:
class Bank Account:
def __init__ (self, balance):
self. Balance = balance
def deposit (self, amount):
self. Balance += amount
def withdraw (self, amount):
self. Balance -= amount
# Creating an instance of the Bank Account class
Bank_Account = Bank Account (1000)
# Accessing the balance directly and modifying
print (Bank_Account.balance)
Bank_Account.withdraw(100)
print (Bank_Account.balance)
Output:
1000
900
Example 2:
Access Modifiers in Python
• Encapsulation along with data hiding is achieved by declaring a class’s
data members and methods as either private or protected.
• Access modifiers are used to limit access to the variables and methods of
a class.
• Python Provides three types of access modifiers public, private, and
protected.
• Public: A Public member can be accessed from outside the class.
• Private: A Private member can only be accessed within the same class.
• Protected: A Protected member can be accessed within the same class
and any subclasses.
Public
Private
Protected
Inheritance
The derived class inherits attributes and behaviours from the
base class.
The new class is called the derived class or subclass or child
class and the existing class is referred to as the base class or
super class or parent class.
Definition: Inheritance can be defined as the process of
acquiring properties of one object from other objects.
The Main use of inheritance is to reuse existing code and extend
its functionality in the subclass.
Syntax:
Types of Inheritance
There are five types of Inheritance
1. Single Inheritance
2. Multilevel Inheritance
3. Hierarchical Inheritance
4. Multiple Inheritance
5. Hybrid Inheritance
Single Inheritance
• Single Inheritance when a child class inherits from a single
parent class.
Syntax: class BaseClassName:
#body of the derived class
Class DerivedClassName (BaseClassName):
#body of the derived class
Example:
Multilevel Inheritance
• When a class inherits from a class that has already inherited from another
class.
Syntax:
class BaseClass:
#base class code here
class DerivedClass1(BaseClass):
#derived class 1 code here
class DerivedClass2(DerivedClass1):
#derived class 2 code here
Example:
Hierarchical Inheritance
• When multiple classes inherit from a single base class.
Syntax:
class BaseClass:
#base class code here
class DerivedClass1(BaseClass):
#derived class 1 code here
class DerivedClass2(BaseClass):
#derived class 2 code here
Example:
Multiple Inheritance
• When a child class inherits from multiple parent classes.
Hybrid Inheritance
• When a combination of two or more inheritance types are used in a single
program.
Syntax: class A:
#class A code here
class B(A):
#class B code here
class C(A):
#class C code here
class D (B, C):
#class D code here
Example:
Polymorphism
• Polymorphism in Object-Oriented Programming refers to the ability of an
object to take on multiple forms.
• The word poly means ‘many’ and morphs means ‘many forms.
• The Main use of Polymorphism is, Increase code reusability.
Types of Polymorphism
1. Compile Time Polymorphism
Compile Time Polymorphism is also known as Static Polymorphism.
Method Overloading is an example of compile-time polymorphism.
Python does not support Method overloading and hence there is no
compile-time polymorphism in Python.
2. Runtime Polymorphism
Runtime Polymorphism is also Known as Dynamic Polymorphism.
Runtime polymorphism is a polymorphism that is resolved during the
runtime or the program execution.
. Method Overriding is an Example of Runtime Polymorphism.
Method Overloading
Method overloading is a feature in some programming languages that
allows to have multiple methods with the same name but different
parameter lists within a single class.
Example:
class Rectangle:
def_init_ (self, width=0, height=0):
self. width=width
self. height=height
def area(self):
return self. width * self. height
rect1=Rectangle ()
rect2=Rectangle (10,20)
print (rect1.area())
print (rect2.area())
Output:
0
200
Method Overriding
Method Overriding is the process of providing a new implementation for a
method that is already defined in a parent class. In object-oriented
programming it allows a subclass to provide a different implementation for
a method that is already defined in a superclass.
Super () Function
The super () function in Python returns a temporary object of the immediate
parent class that can be used to call methods of the parent class.
This makes the code more flexible and reduces the risk of maintenance
issues when the parent class.
Example: