SlideShare a Scribd company logo
7
Most read
10
Most read
12
Most read
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Python Loops
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Agenda
➢ Why to use loops
➢ What are loops
➢ Types of loops in Python
▪ While
▪ For
▪ Nested
➢ Summary
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Why To Use Loops?
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Why To Use Loops
If a software developer develops a software module for payroll processing
that needs to compute the salaries and the bonus of all the employees.
Software module
for payroll
processing
Salary
Bonus
Total
Employee - 1
Employee - 2
Employee - 3
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Why To Use Loops
Manual Loops
Employee-1:
Salary
Bonus
Total
Employee-2:
Salary
Bonus
Total
Employee-3:
Salary
Bonus
Total
Start
Logic to calculate
the total salary
Employee-1:
Salary
Bonus
Total
Start
Logic to calculate
salary of
Employee-1
Employee-2:
Salary
Bonus
Total
Start
Logic to calculate
salary of
Employee-2
Employee-3:
Salary
Bonus
Total
Start
Logic to calculate
salary of
Employee-3
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
What are Loops?
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
What Are Loops
 Loops allows the execution of a statement or a group of statement multiple times.
 In order to enter the loop there are certain conditions defined in the beginning.
 Once the condition becomes false the loop stops and the control moves out of the loop.
Start
Conditional Code
Condition
If condition
is false
If condition
is true
Exit
Loops FiniteInfinite
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Loops In Python
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
While Loop
While loops are known as indefinite or conditional loops. They will keep iterating until certain
conditions are met. There is no guarantee ahead of time regarding how many times the loop will
iterate.
Syntax:
Start
While
Condition?
Body of the loop
True
False
Exit
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
While Loop Example
A little guessing game
Let the correct answer be 13
Input Number: 10 Number is too small
Input Number: 15 Number is too large
Input Number: 13 Exit: Congratulations. You made it!
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
For Loop
For loop is a Python loop which repeats a group of statements a specified number of times. The
for loop provides a syntax where the following information is provided:
 Boolean condition
 The initial value of the counting variable
 Incrementation of counting variable
Start
Execute Statement (s)
End
Next item from
sequence
If no more items in the
sequence
Item from
sequence
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
For Loop Example
 Lets find factorial
 Notice we know the number of iterations so for loop is a better option
3! = 3(2)(1)
4! = 4(3)(2)(1)
5! = 5(4)(3)(2)(1)
Example
Factorial = n(n-1)(n-2)…..1
n n-1 n-2 1
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Nested Loops
Python programming language allows use of loop inside another
loop. This is called Nested Loop. below is the syntax for the same:
Syntax: Syntax:
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Nested Loop Example
Lets code a program in Python that effectively simulates a bank ATM.
Enter the 4-digit pin
Make a withdrawal
Pay in
Check balance
Return card
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Nested Loop Example
 Lets write a code to print the Pythagorean numbers.
 Three integers satisfying a2+b2=c2 are called Pythagorean numbers
c2a2
b2
3 4 5
5 12 13
6 8 10
8 15 17
9 12 15
12 16 20
Enter the maximum number:
20
Pythagorean numbers
between 1-20
While
For
Nested
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Nested Loop Example
While
For
Nested
Bulk reservation:
Name:
Age:
Sex:
Using a for loop inside while loop
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Agenda
Why loops What are loops
While loop For loop
Types of loops
Nested loop
www.edureka.co/pythonEDUREKA PYTHON CERTIFICATION TRAINING
Thank You …
Questions/Queries/Feedback

More Related Content

What's hot (20)

PPT
Python ppt
Mohita Pandey
 
PDF
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Edureka!
 
PPTX
Python 3 Programming Language
Tahani Al-Manie
 
PDF
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Edureka!
 
PDF
Python Basics | Python Tutorial | Edureka
Edureka!
 
PPTX
Python
Aashish Jain
 
PPT
Introduction to Python
Nowell Strite
 
PDF
Introduction To Python | Edureka
Edureka!
 
PPTX
Beginning Python Programming
St. Petersburg College
 
PDF
Python Basics
tusharpanda88
 
PDF
Python made easy
Abhishek kumar
 
PPTX
Looping Statements and Control Statements in Python
PriyankaC44
 
PPTX
Presentation on python
william john
 
ODP
Python_in_Detail
MAHALAKSHMI P
 
PPTX
Introduction to python
AnirudhaGaikwad4
 
PPTX
Loops in Python
Arockia Abins
 
PDF
Python final ppt
Ripal Ranpara
 
PDF
Python programming
Prof. Dr. K. Adisesha
 
PPTX
Polymorphism in Python
Home
 
PDF
Python Sequence Data types in Brief
jyostna bodapati
 
Python ppt
Mohita Pandey
 
Python Course | Python Programming | Python Tutorial | Python Training | Edureka
Edureka!
 
Python 3 Programming Language
Tahani Al-Manie
 
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Edureka!
 
Python Basics | Python Tutorial | Edureka
Edureka!
 
Python
Aashish Jain
 
Introduction to Python
Nowell Strite
 
Introduction To Python | Edureka
Edureka!
 
Beginning Python Programming
St. Petersburg College
 
Python Basics
tusharpanda88
 
Python made easy
Abhishek kumar
 
Looping Statements and Control Statements in Python
PriyankaC44
 
Presentation on python
william john
 
Python_in_Detail
MAHALAKSHMI P
 
Introduction to python
AnirudhaGaikwad4
 
Loops in Python
Arockia Abins
 
Python final ppt
Ripal Ranpara
 
Python programming
Prof. Dr. K. Adisesha
 
Polymorphism in Python
Home
 
Python Sequence Data types in Brief
jyostna bodapati
 

Similar to Python Loops Tutorial | Python For Loop | While Loop Python | Python Training | Edureka (20)

PPTX
Loops in Python.pptx
Guru Nanak Dev University, Amritsar
 
PDF
2 Python Basics II meeting 2 tunghai university pdf
Anggi Andriyadi
 
PPTX
python ppt.pptx
ssuserd10678
 
PPTX
While loop
RabiyaZhexembayeva
 
PPTX
Mastering Python lesson 3a
Ruth Marvin
 
DOCX
iterations.docx
ssuser2e84e4
 
PPTX
Python notes for students to learn and develop
kavithaadhilakshmi
 
PDF
Python Decision Making And Loops.pdf
NehaSpillai1
 
PPTX
Python programming workshop session 2
Abdul Haseeb
 
PPTX
ForLoops.pptx
RabiyaZhexembayeva
 
PPTX
loopin gstatement in python using .pptx
urvashipundir04
 
PDF
loops python.pdf
MUHAMMED MASHAHIL PUKKUNNUMMAL
 
PPTX
Loops in python including control statements and various test cases
AnuragSharma710741
 
PPTX
Going loopy - Introduction to Loops.pptx
Amy Nightingale
 
PPTX
Introduction To Programming with Python Lecture 2
Syed Farjad Zia Zaidi
 
PPTX
Python Development Workshop DAY 06 QUEST
AttaMohammadPanhyar
 
PDF
While-For-loop in python used in college
ssuser7a7cd61
 
PPTX
While_for_loop presententationin first year students
SIHIGOPAL
 
PDF
Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
Edureka!
 
2 Python Basics II meeting 2 tunghai university pdf
Anggi Andriyadi
 
python ppt.pptx
ssuserd10678
 
While loop
RabiyaZhexembayeva
 
Mastering Python lesson 3a
Ruth Marvin
 
iterations.docx
ssuser2e84e4
 
Python notes for students to learn and develop
kavithaadhilakshmi
 
Python Decision Making And Loops.pdf
NehaSpillai1
 
Python programming workshop session 2
Abdul Haseeb
 
ForLoops.pptx
RabiyaZhexembayeva
 
loopin gstatement in python using .pptx
urvashipundir04
 
Loops in python including control statements and various test cases
AnuragSharma710741
 
Going loopy - Introduction to Loops.pptx
Amy Nightingale
 
Introduction To Programming with Python Lecture 2
Syed Farjad Zia Zaidi
 
Python Development Workshop DAY 06 QUEST
AttaMohammadPanhyar
 
While-For-loop in python used in college
ssuser7a7cd61
 
While_for_loop presententationin first year students
SIHIGOPAL
 
Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
Edureka!
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 
Ad

Recently uploaded (20)

PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
NASA A Researcher’s Guide to International Space Station : Physical Sciences ...
Dr. PANKAJ DHUSSA
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 

Python Loops Tutorial | Python For Loop | While Loop Python | Python Training | Edureka