SlideShare a Scribd company logo
Introduction
Most of the computer programming language
support data type, variables,operator and expression
like fundamentals.Python also support these.
Data Types
Data Type specifies which type of value a variable can
store. type() function is used to determine a variable's
type in Python.
Data type continue
Data Types In Python
1. Number
2. String
3. Boolean
4. List
5. Tuple
6. Set
7. Dictionary
Data type continue
1. Number In Python
It is used to store numeric values
Python has three numeric types:
1. Integers
2. Floating point numbers
3. Complex numbers.
Data type continue
1. Integers
Integers or int are positive or negative
numbers with no decimal point. Integers in
Python 3 are of unlimited size.
e.g.
a= 100
b= -100
c= 1*20
print(a)
print(b)
print(c)
Output :-
100
-100
200
Data type continue
Type Conversion of Integer
int() function converts any data type to integer.
e.g.
a = "101" # string
b=int(a) # converts string data type to integer.
c=int(122.4) # converts float data type to
integer.
print(b)
print(c)Run Code
Output :-
101
122
Data type continue
2. Floating point numbers
It is a positive or negative real numbers
with a decimal point.
e.g.
a = 101.2
b = -101.4
c = 111.23
d = 2.3*3
print(a)
print(b)
print(c)
print(d)Run Code
Output :-
101.2
-101.4
111.23
6.8999999999999995
Data type continue
Type Conversion of Floating point numbers
float() function converts any data type to floating point
number.
e.g.
a='301.4' #string
b=float(a) #converts string data type to floating point number.
c=float(121) #converts integer data type to floating point number.
print(b)
print(c)Run Code
Output :-
301.4
121.0
Data type continue
3. Complex numbers
Complex numbers are combination of a
real and imaginary part.Complex numbers are in
the form of X+Yj, where X is a real part and Y is
imaginary part.
e.g.
a = complex(5) # convert 5 to a real part val and zero imaginary part
print(a)
b=complex(101,23) #convert 101 with real part and 23 as imaginary part
print(b)Run Code
Output :-
(5+0j)
(101+23j)
Data type continue
2. String In Python
A string is a sequence of characters. In python we can create string
using single (' ') or double quotes (" ").Both are same in python.
e.g.
str='computer science'
print('str-', str) # print string
print('str[0]-', str[0]) # print first char 'h'
print('str[1:3]-', str[1:3]) # print string from postion 1 to 3 'ell'
print('str[3:]-', str[3:]) # print string staring from 3rd char 'llo world'
print('str *2-', str *2 ) # print string two times
print("str +'yes'-", str +'yes') # concatenated string
Output
str- computer science
str[0]- c
str[1:3]- om
str[3:]- puter science
str *2- computer sciencecomputer science
str +'yes'- computer scienceyes
Data type continue
Iterating through string
e.g.
str='comp sc'
for i in str:
print(i)
Output
c
o
m
p
s
c
Data type continue
3. Boolean In Python
It is used to store two possible values either true or false
e.g.
str="comp sc"
boo=str.isupper() # test if string contains upper case
print(boo)
Output
False
Data type continue
4.List In Python
List are collections of items and each item has its own index value.
5. Tuple In Python
List and tuple, both are same except ,a list is mutable python objects and
tuple is immutable Python objects. Immutable Python objects mean you
cannot modify the contents of a tuple once it is assigned.
e.g. of list
list =[6,9]
list[0]=55
print(list[0])
print(list[1])
OUTPUT
55
9
e.g. of tuple
tup=(66,99)
Tup[0]=3 # error message will be displayed
print(tup[0])
print(tup[1])
Data type continue
6. Set In Python
It is an unordered collection of unique and
immutable (which cannot be modified)items.
e.g.
set1={11,22,33,22}
print(set1)
Output
{33, 11, 22}
Data type continue
7. Dictionary In Python
It is an unordered collection of items and each
item consist of a key and a value.
e.g.
dict = {'Subject': 'comp sc', 'class': '11'}
print(dict)
print ("Subject : ", dict['Subject'])
print ("class : ", dict.get('class'))
Output
{'Subject': 'comp sc', 'class': '11'}
Subject : comp sc
class : 11
Operator
Operators are special symbols in Python that carry out arithmetic or
logical computation. The value that the operator operates on is called
the operand.
Arithmetic operators
Used for mathematical operation
Operator Meaning Example
+ Add two operands or unary plus
x + y
+2
- Subtract right operand from the left or unary minus
x - y
-2
* Multiply two operands x * y
/
Divide left operand by the right one (always results into
float)
x / y
%
Modulus - remainder of the division of left operand by the
right
x % y (remainder of x/y)
//
Floor division - division that results into whole number
adjusted to the left in the number line
x // y
** Exponent - left operand raised to the power of right x**y (x to the power y)
Operator continue
Arithmatic operator continue
e.g.
x = 5
y = 4
print('x + y =',x+y)
print('x - y =',x-y)
print('x * y =',x*y)
print('x / y =',x/y)
print('x // y =',x//y)
print('x ** y =',x**y)
OUTPUT
('x + y =', 9)
('x - y =', 1)
('x * y =', 20)
('x / y =', 1)
('x // y =', 1)
('x ** y =', 625)
• Write a program in python to calculate the
simple interest based on entered amount ,rate
and time
Operator continue
Arithmatic operator continue
# EMI Calculator program in Python
def emi_calculator(p, r, t):
r = r / (12 * 100) # one month interest
t = t * 12 # one month period
emi = (p * r * pow(1 + r, t)) / (pow(1 + r, t) - 1)
return emi
# driver code
principal = 10000;
rate = 10;
time = 2;
emi = emi_calculator(principal, rate, time);
print("Monthly EMI is= ", emi)
Operator continue
Arithmatic operator continue
How to calculate GST
GST ( Goods and Services Tax ) which is included in netprice
of product for get GST % first need to calculate GSTAmount by subtract
original cost from Netprice and then apply
GST % formula = (GST_Amount*100) / original_cost
# Python3 Program to compute GST from original and net prices.
def Calculate_GST(org_cost, N_price):
# return value after calculate GST%
return (((N_price - org_cost) * 100) / org_cost);
# Driver program to test above functions
org_cost = 100
N_price = 120
print("GST = ",end='')
print(round(Calculate_GST(org_cost, N_price)),end='')
print("%")
* Write a Python program to calculate the standard deviation
Operator continue
Comparison operators
used to compare values
Operator Meaning
Exampl
e
> Greater that - True if left operand is greater than the right x > y
< Less that - True if left operand is less than the right x < y
== Equal to - True if both operands are equal x == y
!= Not equal to - True if operands are not equal x != y
>=
Greater than or equal to - True if left operand is greater than
or equal to the right
x >= y
<=
Less than or equal to - True if left operand is less than or
equal to the right
x <= y
Operator continue
Comparison operators continue
e.g.
x = 101
y = 121
print('x > y is',x>y)
print('x < y is',x<y)
print('x == y is',x==y)
print('x != y is',x!=y)
print('x >= y is',x>=y)
print('x <= y is',x<=y)
Output
('x > y is', False)
('x < y is', True)
('x == y is', False)
('x != y is', True)
('x >= y is', False)
('x <= y is', True)
Operator continue
Logical operators
e.g.
x = True
y = False
print('x and y is',x and y)
print('x or y is',x or y)
print('not x is',not x)
Outpur
('x and y is', False)
('x or y is', True)
('not x is', False)
Operator Meaning Example
and True if both the operands are true x and y
or True if either of the operands is true x or y
not True if operand is false (complements the operand) not x
Operator continue
Bitwise operators
Used to manipulate bit values.
Operator Meaning Example
& Bitwise AND x& y
| Bitwise OR x | y
~ Bitwise NOT ~x
^ Bitwise XOR x ^ y
>> Bitwise right shift x>> 2
<< Bitwise left shift x<< 2
Operator continue
Bitwise operators continue
a = 6
b = 3
print ('a=',a,':',bin(a),'b=',b,':',bin(b))
c = 0
c = a & b;
print ("result of AND is ", c,':',bin(c))
c = a | b;
print ("result of OR is ", c,':',bin(c))
c = a ^ b;
print ("result of EXOR is ", c,':',bin(c))
c = ~a;
print ("result of COMPLEMENT is ",
c,':',bin(c))
c = a << 2;
print ("result of LEFT SHIFT is ", c,':',bin(c))
c = a >> 2;
print ("result of RIGHT SHIFT is ", c,':',bin(c))
Output
('a=', 6, ':', '0b110', 'b=', 3, ':', '0b11')
('result of AND is ', 2, ':', '0b10')
('result of OR is ', 7, ':', '0b111')
('result of EXOR is ', 5, ':', '0b101')
('result of COMPLEMENT is ', -7, ':', '-0b111')
('result of LEFT SHIFT is ', 24, ':', '0b11000')
('result of RIGHT SHIFT is ', 1, ':', '0b1')
Operator continue
Python Membership Operators
Test for membership in a sequence
e.g.
a = 5
b = 10
list = [1, 2, 3, 4, 5 ]
if ( a in list ):
print ("Line 1 - a is available in the given list")
else:
print ("Line 1 - a is not available in the given list")
if ( b not in list ):
print ("Line 2 - b is not available in the given list")
else:
print ("Line 2 - b is available in the given list")
output
Line 1 - a is available in the given list
Line 2 - b is not available in the given list
Operator Description
in Evaluates to true if it finds a variable in the specified sequence and false otherwise.
not in Evaluates to true if it does not finds a variable in the specified sequence and false otherwise.
Operator continue
Python Identity Operators
e.g.
a = 10
b = 10
print ('Line 1','a=',a,':',id(a), 'b=',b,':',id(b))
if ( a is b ):
print ("Line 2 - a and b have same identity")
else:
print ("Line 2 - a and b do not have same identity")
OUTPUT
('Line 1', 'a=', 10, ':', 20839436, 'b=', 10, ':', 20839436)
Line 2 - a and b have same identity
Opera
tor
Description
is
Evaluates to true if the variables on either side of the operator point to the
same object and false otherwise.
is not
Evaluates to false if the variables on either side of the operator point to the
same object and true otherwise.
Operator continue
Operators Precedence :highest precedence to lowest precedence table
Operator Description
** Exponentiation (raise to the power)
~ + - Complement, unary plus and minus (method names for the last two are +@ and
-@)
* / % // Multiply, divide, modulo and floor division
+ - Addition and subtraction
>> << Right and left bitwise shift
& Bitwise 'AND'td>
^ | Bitwise exclusive `OR' and regular `OR'
<= < > >= Comparison operators
<> == != Equality operators
= %= /= //= -=
+= *= **=
Assignment operators
is is not Identity operators
in not in Membership operators
not or and Logical operators
Expression
It is a valid combination of
operators,literals and variable.
1.Arithmatic expression :- e.g. c=a+b
2.Relational expression :- e.g. x>y
3.Logical expression :- a or b
4.String expression :- c=“comp”+”sc”
Type conversion
The process of converting the value of one data type (integer, string, float, etc.) to
another data type is called type conversion.
Python has two types of type conversion.
Implicit Type Conversion
Explicit Type Conversion
Implicit Type Conversion:
In Implicit type conversion, Python automatically converts one data type to another
data type. This process doesn't need any user involvement.
e.g.
num_int = 12
num_flo = 10.23
num_new = num_int + num_flo
print("datatype of num_int:",type(num_int))
print("datatype of num_flo:",type(num_flo))
print("Value of num_new:",num_new)
print("datatype of num_new:",type(num_new))
OUTPUT
('datatype of num_int:', <type 'int'>)
('datatype of num_flo:', <type 'float'>)
('Value of num_new:', 22.23)
('datatype of num_new:', <type 'float'>)
Type conversion
Explicit Type Conversion:
In Explicit Type Conversion, users convert the data type of an object to
required data type. We use the predefined functions like int(),float(),str() etc.
e.g.
num_int = 12
num_str = "45"
print("Data type of num_int:",type(num_int))
print("Data type of num_str before Type Casting:",type(num_str))
num_str = int(num_str)
print("Data type of num_str after Type Casting:",type(num_str))
num_sum = num_int + num_str
print("Sum of num_int and num_str:",num_sum)
print("Data type of the sum:",type(num_sum))
OUTPUT
('Data type of num_int:', <type 'int'>)
('Data type of num_str before Type Casting:', <type 'str'>)
('Data type of num_str after Type Casting:', <type 'int'>)
('Sum of num_int and num_str:', 57)
('Data type of the sum:', <type 'int'>)
math module
It is a standard module in Python. To use mathematical functions of this
module,we have to import the module using import math.
Function Description E
x
a
m
p
l
e
ceil(n) It returns the smallest integer greater than or equal to n. math.ceil(4.2) returns 5
factorial(n) It returns the factorial of value n math.factorial(4) returns 24
floor(n) It returns the largest integer less than or equal to n math.floor(4.2) returns 4
fmod(x, y) It returns the remainder when n is divided by y math.fmod(10.5,2) returns 0.5
exp(n) It returns e**n math.exp(1) return 2.718281828459045
log2(n) It returns the base-2 logarithm of n math.log2(4) return 2.0
log10(n) It returns the base-10 logarithm of n math.log10(4) returns 0.6020599913279624
pow(n, y) It returns n raised to the power y math.pow(2,3) returns 8.0
sqrt(n) It returns the square root of n math.sqrt(100) returns 10.0
cos(n) It returns the cosine of n math.cos(100) returns 0.8623188722876839
sin(n) It returns the sine of n math.sin(100) returns -0.5063656411097588
tan(n) It returns the tangent of n math.tan(100) returns -0.5872139151569291
pi It is pi value (3.14159...) It is (3.14159...)
e It is mathematical constant e (2.71828...) It is (2.71828...)

More Related Content

PPTX
PPt Revision of the basics of python1.pptx
tcsonline1222
 
PDF
Data Handling.pdf
MILANOP1
 
PPTX
Revision-of-thehki-basics-of-python.pptx
PraveenaFppt
 
PDF
Python : basic operators
S.M. Salaquzzaman
 
PPTX
Revision-of-the-basics-of-python. concepts
mahalakshmi902878
 
PPTX
chapter-3-engdata-handling1_1585929972520 by EasePDF.pptx
Jahnavi113937
 
PPTX
Python programming language introduction unit
michaelaaron25322
 
PPTX
OPERATORS-PYTHON.pptx ALL OPERATORS ARITHMATIC AND LOGICAL
NagarathnaRajur2
 
PPt Revision of the basics of python1.pptx
tcsonline1222
 
Data Handling.pdf
MILANOP1
 
Revision-of-thehki-basics-of-python.pptx
PraveenaFppt
 
Python : basic operators
S.M. Salaquzzaman
 
Revision-of-the-basics-of-python. concepts
mahalakshmi902878
 
chapter-3-engdata-handling1_1585929972520 by EasePDF.pptx
Jahnavi113937
 
Python programming language introduction unit
michaelaaron25322
 
OPERATORS-PYTHON.pptx ALL OPERATORS ARITHMATIC AND LOGICAL
NagarathnaRajur2
 

Similar to Data Handling (20)

PPTX
python statement, expressions and operators.pptx
richumt
 
PPTX
Grade XI - Computer science Data Handling in Python
vidyuthno1
 
PPTX
unit1 python.pptx
TKSanthoshRao
 
PPT
hlukj6;lukm,t.mnjhgjukryopkiu;lyk y2.ppt
PraveenaFppt
 
PPTX
data handling revision.pptx
DeepaRavi21
 
PPT
Py-Slides-2.ppt
AllanGuevarra1
 
PPT
Py-Slides-2 (1).ppt
KalaiVani395886
 
PPT
Py-Slides-2.ppt
TejaValmiki
 
PPTX
Python Programming | JNTUK | UNIT 1 | Lecture 5
FabMinds
 
PPT
python operators.ppt
ErnieAcuna
 
PPTX
Operators Concept in Python-N.Kavitha.pptx
Kavitha713564
 
PPTX
MODULE. .pptx
Alpha337901
 
PPTX
PYTHON OPERATORS 123Python Operators.pptx
AnjaneyuluKunchala1
 
PPT
PE1 Module 2.ppt
balewayalew
 
PPTX
Operators in Python
Anusuya123
 
PPTX
Python Lec-6 Operatorguijjjjuugggggs.pptx
ks812227
 
PPTX
Introduction to python programming ( part-1)
Ziyauddin Shaik
 
PPTX
Python PPT2
Selvakanmani S
 
python statement, expressions and operators.pptx
richumt
 
Grade XI - Computer science Data Handling in Python
vidyuthno1
 
unit1 python.pptx
TKSanthoshRao
 
hlukj6;lukm,t.mnjhgjukryopkiu;lyk y2.ppt
PraveenaFppt
 
data handling revision.pptx
DeepaRavi21
 
Py-Slides-2.ppt
AllanGuevarra1
 
Py-Slides-2 (1).ppt
KalaiVani395886
 
Py-Slides-2.ppt
TejaValmiki
 
Python Programming | JNTUK | UNIT 1 | Lecture 5
FabMinds
 
python operators.ppt
ErnieAcuna
 
Operators Concept in Python-N.Kavitha.pptx
Kavitha713564
 
MODULE. .pptx
Alpha337901
 
PYTHON OPERATORS 123Python Operators.pptx
AnjaneyuluKunchala1
 
PE1 Module 2.ppt
balewayalew
 
Operators in Python
Anusuya123
 
Python Lec-6 Operatorguijjjjuugggggs.pptx
ks812227
 
Introduction to python programming ( part-1)
Ziyauddin Shaik
 
Python PPT2
Selvakanmani S
 
Ad

Recently uploaded (20)

PPTX
Digital Marketing training in Chandigarh
chetann0777
 
PPTX
The actual field of Real_Estate_CRM_Strategy.pptx
SanjivaMudada
 
PDF
Copy of HKISO FINAL ROUND Session 1 & 2 - S3 and SS.pdf
nothisispatrickduhh
 
DOCX
(14-5) Bo-15-De-luyen-thi-vao-10-Ha-Noi-25-26.docx
27QuynNhnChu
 
PDF
reStartEvents 8:7 Nationwide All-Clearances Employer Directory.pdf
Ken Fuller
 
PPTX
锡根大学文凭办理|办理Uni Siegen毕业证电子版成绩单在线办理办成绩单
xxxihn4u
 
PPTX
arif og 2.pptx defence mechanism of gingiva
arifkhansm29
 
PPTX
LESSON 5 TLE 7SDHSJFJDFHDJFHDJFEWFFFEDDDD
roeltabuyo4
 
PDF
PowerPoint Presentation -- Larry G -- 2021 -- 218df4ebe0bc5607d6bfcf49fd21eda...
Adeel452922
 
PPTX
9e3e3981-1864-438b-93b4-ebabcb5090d0.pptx
SureshKumar565390
 
PPTX
MASTERING COMMUNICATION SKILLS.pptxgdee33w
akramm8009
 
PPTX
Economic_Importance_of_Bryophytes Mscpptx
RupeshJakhar1
 
PDF
Left Holding the Bag sequence 1 storyboard by Mark G.
MarkGalez
 
PPTX
Capstone Professional Portfolio Melissa Alice
malice926
 
PDF
Invincible Season 2 Storyboard Revisions by Mark G
MarkGalez
 
PPTX
Title The Power of Oral Communication (2).pptx
amankumar7762044
 
PPTX
MARIMUTHU .pptxwthvdtsdghggggyhyyyxghhce
sakthick46
 
PPT
Gas turbine mark VIe control basics tool box description
aliyu4ahmad
 
PPTX
Soil_Health_Card_Template_Style.pptxkkki
Akash486765
 
PPT
Cryptographyhsjckhyhbghvdsnbfgnhgvhnnbfrrnb
mannamsarath224
 
Digital Marketing training in Chandigarh
chetann0777
 
The actual field of Real_Estate_CRM_Strategy.pptx
SanjivaMudada
 
Copy of HKISO FINAL ROUND Session 1 & 2 - S3 and SS.pdf
nothisispatrickduhh
 
(14-5) Bo-15-De-luyen-thi-vao-10-Ha-Noi-25-26.docx
27QuynNhnChu
 
reStartEvents 8:7 Nationwide All-Clearances Employer Directory.pdf
Ken Fuller
 
锡根大学文凭办理|办理Uni Siegen毕业证电子版成绩单在线办理办成绩单
xxxihn4u
 
arif og 2.pptx defence mechanism of gingiva
arifkhansm29
 
LESSON 5 TLE 7SDHSJFJDFHDJFHDJFEWFFFEDDDD
roeltabuyo4
 
PowerPoint Presentation -- Larry G -- 2021 -- 218df4ebe0bc5607d6bfcf49fd21eda...
Adeel452922
 
9e3e3981-1864-438b-93b4-ebabcb5090d0.pptx
SureshKumar565390
 
MASTERING COMMUNICATION SKILLS.pptxgdee33w
akramm8009
 
Economic_Importance_of_Bryophytes Mscpptx
RupeshJakhar1
 
Left Holding the Bag sequence 1 storyboard by Mark G.
MarkGalez
 
Capstone Professional Portfolio Melissa Alice
malice926
 
Invincible Season 2 Storyboard Revisions by Mark G
MarkGalez
 
Title The Power of Oral Communication (2).pptx
amankumar7762044
 
MARIMUTHU .pptxwthvdtsdghggggyhyyyxghhce
sakthick46
 
Gas turbine mark VIe control basics tool box description
aliyu4ahmad
 
Soil_Health_Card_Template_Style.pptxkkki
Akash486765
 
Cryptographyhsjckhyhbghvdsnbfgnhgvhnnbfrrnb
mannamsarath224
 
Ad

Data Handling

  • 1. Introduction Most of the computer programming language support data type, variables,operator and expression like fundamentals.Python also support these. Data Types Data Type specifies which type of value a variable can store. type() function is used to determine a variable's type in Python.
  • 2. Data type continue Data Types In Python 1. Number 2. String 3. Boolean 4. List 5. Tuple 6. Set 7. Dictionary
  • 3. Data type continue 1. Number In Python It is used to store numeric values Python has three numeric types: 1. Integers 2. Floating point numbers 3. Complex numbers.
  • 4. Data type continue 1. Integers Integers or int are positive or negative numbers with no decimal point. Integers in Python 3 are of unlimited size. e.g. a= 100 b= -100 c= 1*20 print(a) print(b) print(c) Output :- 100 -100 200
  • 5. Data type continue Type Conversion of Integer int() function converts any data type to integer. e.g. a = "101" # string b=int(a) # converts string data type to integer. c=int(122.4) # converts float data type to integer. print(b) print(c)Run Code Output :- 101 122
  • 6. Data type continue 2. Floating point numbers It is a positive or negative real numbers with a decimal point. e.g. a = 101.2 b = -101.4 c = 111.23 d = 2.3*3 print(a) print(b) print(c) print(d)Run Code Output :- 101.2 -101.4 111.23 6.8999999999999995
  • 7. Data type continue Type Conversion of Floating point numbers float() function converts any data type to floating point number. e.g. a='301.4' #string b=float(a) #converts string data type to floating point number. c=float(121) #converts integer data type to floating point number. print(b) print(c)Run Code Output :- 301.4 121.0
  • 8. Data type continue 3. Complex numbers Complex numbers are combination of a real and imaginary part.Complex numbers are in the form of X+Yj, where X is a real part and Y is imaginary part. e.g. a = complex(5) # convert 5 to a real part val and zero imaginary part print(a) b=complex(101,23) #convert 101 with real part and 23 as imaginary part print(b)Run Code Output :- (5+0j) (101+23j)
  • 9. Data type continue 2. String In Python A string is a sequence of characters. In python we can create string using single (' ') or double quotes (" ").Both are same in python. e.g. str='computer science' print('str-', str) # print string print('str[0]-', str[0]) # print first char 'h' print('str[1:3]-', str[1:3]) # print string from postion 1 to 3 'ell' print('str[3:]-', str[3:]) # print string staring from 3rd char 'llo world' print('str *2-', str *2 ) # print string two times print("str +'yes'-", str +'yes') # concatenated string Output str- computer science str[0]- c str[1:3]- om str[3:]- puter science str *2- computer sciencecomputer science str +'yes'- computer scienceyes
  • 10. Data type continue Iterating through string e.g. str='comp sc' for i in str: print(i) Output c o m p s c
  • 11. Data type continue 3. Boolean In Python It is used to store two possible values either true or false e.g. str="comp sc" boo=str.isupper() # test if string contains upper case print(boo) Output False
  • 12. Data type continue 4.List In Python List are collections of items and each item has its own index value. 5. Tuple In Python List and tuple, both are same except ,a list is mutable python objects and tuple is immutable Python objects. Immutable Python objects mean you cannot modify the contents of a tuple once it is assigned. e.g. of list list =[6,9] list[0]=55 print(list[0]) print(list[1]) OUTPUT 55 9 e.g. of tuple tup=(66,99) Tup[0]=3 # error message will be displayed print(tup[0]) print(tup[1])
  • 13. Data type continue 6. Set In Python It is an unordered collection of unique and immutable (which cannot be modified)items. e.g. set1={11,22,33,22} print(set1) Output {33, 11, 22}
  • 14. Data type continue 7. Dictionary In Python It is an unordered collection of items and each item consist of a key and a value. e.g. dict = {'Subject': 'comp sc', 'class': '11'} print(dict) print ("Subject : ", dict['Subject']) print ("class : ", dict.get('class')) Output {'Subject': 'comp sc', 'class': '11'} Subject : comp sc class : 11
  • 15. Operator Operators are special symbols in Python that carry out arithmetic or logical computation. The value that the operator operates on is called the operand. Arithmetic operators Used for mathematical operation Operator Meaning Example + Add two operands or unary plus x + y +2 - Subtract right operand from the left or unary minus x - y -2 * Multiply two operands x * y / Divide left operand by the right one (always results into float) x / y % Modulus - remainder of the division of left operand by the right x % y (remainder of x/y) // Floor division - division that results into whole number adjusted to the left in the number line x // y ** Exponent - left operand raised to the power of right x**y (x to the power y)
  • 16. Operator continue Arithmatic operator continue e.g. x = 5 y = 4 print('x + y =',x+y) print('x - y =',x-y) print('x * y =',x*y) print('x / y =',x/y) print('x // y =',x//y) print('x ** y =',x**y) OUTPUT ('x + y =', 9) ('x - y =', 1) ('x * y =', 20) ('x / y =', 1) ('x // y =', 1) ('x ** y =', 625) • Write a program in python to calculate the simple interest based on entered amount ,rate and time
  • 17. Operator continue Arithmatic operator continue # EMI Calculator program in Python def emi_calculator(p, r, t): r = r / (12 * 100) # one month interest t = t * 12 # one month period emi = (p * r * pow(1 + r, t)) / (pow(1 + r, t) - 1) return emi # driver code principal = 10000; rate = 10; time = 2; emi = emi_calculator(principal, rate, time); print("Monthly EMI is= ", emi)
  • 18. Operator continue Arithmatic operator continue How to calculate GST GST ( Goods and Services Tax ) which is included in netprice of product for get GST % first need to calculate GSTAmount by subtract original cost from Netprice and then apply GST % formula = (GST_Amount*100) / original_cost # Python3 Program to compute GST from original and net prices. def Calculate_GST(org_cost, N_price): # return value after calculate GST% return (((N_price - org_cost) * 100) / org_cost); # Driver program to test above functions org_cost = 100 N_price = 120 print("GST = ",end='') print(round(Calculate_GST(org_cost, N_price)),end='') print("%") * Write a Python program to calculate the standard deviation
  • 19. Operator continue Comparison operators used to compare values Operator Meaning Exampl e > Greater that - True if left operand is greater than the right x > y < Less that - True if left operand is less than the right x < y == Equal to - True if both operands are equal x == y != Not equal to - True if operands are not equal x != y >= Greater than or equal to - True if left operand is greater than or equal to the right x >= y <= Less than or equal to - True if left operand is less than or equal to the right x <= y
  • 20. Operator continue Comparison operators continue e.g. x = 101 y = 121 print('x > y is',x>y) print('x < y is',x<y) print('x == y is',x==y) print('x != y is',x!=y) print('x >= y is',x>=y) print('x <= y is',x<=y) Output ('x > y is', False) ('x < y is', True) ('x == y is', False) ('x != y is', True) ('x >= y is', False) ('x <= y is', True)
  • 21. Operator continue Logical operators e.g. x = True y = False print('x and y is',x and y) print('x or y is',x or y) print('not x is',not x) Outpur ('x and y is', False) ('x or y is', True) ('not x is', False) Operator Meaning Example and True if both the operands are true x and y or True if either of the operands is true x or y not True if operand is false (complements the operand) not x
  • 22. Operator continue Bitwise operators Used to manipulate bit values. Operator Meaning Example & Bitwise AND x& y | Bitwise OR x | y ~ Bitwise NOT ~x ^ Bitwise XOR x ^ y >> Bitwise right shift x>> 2 << Bitwise left shift x<< 2
  • 23. Operator continue Bitwise operators continue a = 6 b = 3 print ('a=',a,':',bin(a),'b=',b,':',bin(b)) c = 0 c = a & b; print ("result of AND is ", c,':',bin(c)) c = a | b; print ("result of OR is ", c,':',bin(c)) c = a ^ b; print ("result of EXOR is ", c,':',bin(c)) c = ~a; print ("result of COMPLEMENT is ", c,':',bin(c)) c = a << 2; print ("result of LEFT SHIFT is ", c,':',bin(c)) c = a >> 2; print ("result of RIGHT SHIFT is ", c,':',bin(c)) Output ('a=', 6, ':', '0b110', 'b=', 3, ':', '0b11') ('result of AND is ', 2, ':', '0b10') ('result of OR is ', 7, ':', '0b111') ('result of EXOR is ', 5, ':', '0b101') ('result of COMPLEMENT is ', -7, ':', '-0b111') ('result of LEFT SHIFT is ', 24, ':', '0b11000') ('result of RIGHT SHIFT is ', 1, ':', '0b1')
  • 24. Operator continue Python Membership Operators Test for membership in a sequence e.g. a = 5 b = 10 list = [1, 2, 3, 4, 5 ] if ( a in list ): print ("Line 1 - a is available in the given list") else: print ("Line 1 - a is not available in the given list") if ( b not in list ): print ("Line 2 - b is not available in the given list") else: print ("Line 2 - b is available in the given list") output Line 1 - a is available in the given list Line 2 - b is not available in the given list Operator Description in Evaluates to true if it finds a variable in the specified sequence and false otherwise. not in Evaluates to true if it does not finds a variable in the specified sequence and false otherwise.
  • 25. Operator continue Python Identity Operators e.g. a = 10 b = 10 print ('Line 1','a=',a,':',id(a), 'b=',b,':',id(b)) if ( a is b ): print ("Line 2 - a and b have same identity") else: print ("Line 2 - a and b do not have same identity") OUTPUT ('Line 1', 'a=', 10, ':', 20839436, 'b=', 10, ':', 20839436) Line 2 - a and b have same identity Opera tor Description is Evaluates to true if the variables on either side of the operator point to the same object and false otherwise. is not Evaluates to false if the variables on either side of the operator point to the same object and true otherwise.
  • 26. Operator continue Operators Precedence :highest precedence to lowest precedence table Operator Description ** Exponentiation (raise to the power) ~ + - Complement, unary plus and minus (method names for the last two are +@ and -@) * / % // Multiply, divide, modulo and floor division + - Addition and subtraction >> << Right and left bitwise shift & Bitwise 'AND'td> ^ | Bitwise exclusive `OR' and regular `OR' <= < > >= Comparison operators <> == != Equality operators = %= /= //= -= += *= **= Assignment operators is is not Identity operators in not in Membership operators not or and Logical operators
  • 27. Expression It is a valid combination of operators,literals and variable. 1.Arithmatic expression :- e.g. c=a+b 2.Relational expression :- e.g. x>y 3.Logical expression :- a or b 4.String expression :- c=“comp”+”sc”
  • 28. Type conversion The process of converting the value of one data type (integer, string, float, etc.) to another data type is called type conversion. Python has two types of type conversion. Implicit Type Conversion Explicit Type Conversion Implicit Type Conversion: In Implicit type conversion, Python automatically converts one data type to another data type. This process doesn't need any user involvement. e.g. num_int = 12 num_flo = 10.23 num_new = num_int + num_flo print("datatype of num_int:",type(num_int)) print("datatype of num_flo:",type(num_flo)) print("Value of num_new:",num_new) print("datatype of num_new:",type(num_new)) OUTPUT ('datatype of num_int:', <type 'int'>) ('datatype of num_flo:', <type 'float'>) ('Value of num_new:', 22.23) ('datatype of num_new:', <type 'float'>)
  • 29. Type conversion Explicit Type Conversion: In Explicit Type Conversion, users convert the data type of an object to required data type. We use the predefined functions like int(),float(),str() etc. e.g. num_int = 12 num_str = "45" print("Data type of num_int:",type(num_int)) print("Data type of num_str before Type Casting:",type(num_str)) num_str = int(num_str) print("Data type of num_str after Type Casting:",type(num_str)) num_sum = num_int + num_str print("Sum of num_int and num_str:",num_sum) print("Data type of the sum:",type(num_sum)) OUTPUT ('Data type of num_int:', <type 'int'>) ('Data type of num_str before Type Casting:', <type 'str'>) ('Data type of num_str after Type Casting:', <type 'int'>) ('Sum of num_int and num_str:', 57) ('Data type of the sum:', <type 'int'>)
  • 30. math module It is a standard module in Python. To use mathematical functions of this module,we have to import the module using import math. Function Description E x a m p l e ceil(n) It returns the smallest integer greater than or equal to n. math.ceil(4.2) returns 5 factorial(n) It returns the factorial of value n math.factorial(4) returns 24 floor(n) It returns the largest integer less than or equal to n math.floor(4.2) returns 4 fmod(x, y) It returns the remainder when n is divided by y math.fmod(10.5,2) returns 0.5 exp(n) It returns e**n math.exp(1) return 2.718281828459045 log2(n) It returns the base-2 logarithm of n math.log2(4) return 2.0 log10(n) It returns the base-10 logarithm of n math.log10(4) returns 0.6020599913279624 pow(n, y) It returns n raised to the power y math.pow(2,3) returns 8.0 sqrt(n) It returns the square root of n math.sqrt(100) returns 10.0 cos(n) It returns the cosine of n math.cos(100) returns 0.8623188722876839 sin(n) It returns the sine of n math.sin(100) returns -0.5063656411097588 tan(n) It returns the tangent of n math.tan(100) returns -0.5872139151569291 pi It is pi value (3.14159...) It is (3.14159...) e It is mathematical constant e (2.71828...) It is (2.71828...)