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

PPTX
Looping statement in python
RaginiJain21
 
PPTX
Conditional Statement in C Language
Shaina Arora
 
PPTX
Public speaking
Grinty Babu
 
PPTX
Python for loop
Aishwarya Deshmukh
 
PPTX
Data types in python
RaginiJain21
 
PPSX
Perceptron (neural network)
EdutechLearners
 
PPTX
Introduction to python for Beginners
Sujith Kumar
 
PDF
Real World End to End machine Learning Pipeline
Srivatsan Srinivasan
 
Looping statement in python
RaginiJain21
 
Conditional Statement in C Language
Shaina Arora
 
Public speaking
Grinty Babu
 
Python for loop
Aishwarya Deshmukh
 
Data types in python
RaginiJain21
 
Perceptron (neural network)
EdutechLearners
 
Introduction to python for Beginners
Sujith Kumar
 
Real World End to End machine Learning Pipeline
Srivatsan Srinivasan
 

What's hot (20)

PPTX
Loops in Python
AbhayDhupar
 
PPTX
Introduction to python
Ayshwarya Baburam
 
PDF
Datatypes in python
eShikshak
 
PPTX
Functions in Python
Shakti Singh Rathore
 
PDF
Python libraries
Prof. Dr. K. Adisesha
 
PPT
Python ppt
Mohita Pandey
 
PPTX
Introduction to Python Basics Programming
Collaboration Technologies
 
PDF
Python - the basics
University of Technology
 
PPSX
Modules and packages in python
TMARAGATHAM
 
PPTX
Python Libraries and Modules
RaginiJain21
 
ODP
Python Modules
Nitin Reddy Katkam
 
PDF
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Edureka!
 
PPTX
Chapter 05 classes and objects
Praveen M Jigajinni
 
PDF
Python Flow Control
Mohammed Sikander
 
PDF
Python Collections Tutorial | Edureka
Edureka!
 
PPTX
Python Functions
Mohammed Sikander
 
PDF
Introduction to Python
Mohammed Sikander
 
PPTX
Python Tutorial Part 1
Haitham El-Ghareeb
 
PPTX
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Maulik Borsaniya
 
Loops in Python
AbhayDhupar
 
Introduction to python
Ayshwarya Baburam
 
Datatypes in python
eShikshak
 
Functions in Python
Shakti Singh Rathore
 
Python libraries
Prof. Dr. K. Adisesha
 
Python ppt
Mohita Pandey
 
Introduction to Python Basics Programming
Collaboration Technologies
 
Python - the basics
University of Technology
 
Modules and packages in python
TMARAGATHAM
 
Python Libraries and Modules
RaginiJain21
 
Python Modules
Nitin Reddy Katkam
 
Python Tutorial | Python Tutorial for Beginners | Python Training | Edureka
Edureka!
 
Chapter 05 classes and objects
Praveen M Jigajinni
 
Python Flow Control
Mohammed Sikander
 
Python Collections Tutorial | Edureka
Edureka!
 
Python Functions
Mohammed Sikander
 
Introduction to Python
Mohammed Sikander
 
Python Tutorial Part 1
Haitham El-Ghareeb
 
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Maulik Borsaniya
 
Ad

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

PDF
Python Interview Questions And Answers 2019 | Edureka
Edureka!
 
PDF
Getting started with Python
Gaurav Gahlot
 
PDF
Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
Edureka!
 
PDF
Best data analyst course syllabus 2025.pdf
mayra0232020
 
PDF
Python tutorial
Guru99
 
PPTX
Sumo Logic Cert Jam - Search Mastery
Sumo Logic
 
PDF
Go - techniques for writing high performance Go applications
ss63261
 
PDF
Reinforcement Learning Tutorial | Edureka
Edureka!
 
PDF
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
PDF
Python Programming Language | Python Classes | Python Tutorial | Python Train...
Edureka!
 
PPTX
Chapter08.pptx
GiannisPagges
 
PDF
Chapter 12 Computer Science ( ICS 12).pdf
AamirShahzad527024
 
PDF
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
PPTX
Python_Haegl.powerpoint presentation. tx
vishwanathgoudapatil1
 
PDF
PROGRAMMING _ Intro-Walk into Python.pdf
joel2thetag
 
PPTX
TPOT: The data science assistant
Hoffman Lab
 
PPTX
Vasiliy Litvinov - Python Profiling
Sergey Arkhipov
 
PPT
Python week 2 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
PDF
Best Data Science Deep Learning In Python in Bangalore
myTectra Learning Solutions Private Ltd
 
PPTX
Basic of Python- Hands on Session
Dharmesh Tank
 
Python Interview Questions And Answers 2019 | Edureka
Edureka!
 
Getting started with Python
Gaurav Gahlot
 
Python Programming | Python Programming For Beginners | Python Tutorial | Edu...
Edureka!
 
Best data analyst course syllabus 2025.pdf
mayra0232020
 
Python tutorial
Guru99
 
Sumo Logic Cert Jam - Search Mastery
Sumo Logic
 
Go - techniques for writing high performance Go applications
ss63261
 
Reinforcement Learning Tutorial | Edureka
Edureka!
 
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
Python Programming Language | Python Classes | Python Tutorial | Python Train...
Edureka!
 
Chapter08.pptx
GiannisPagges
 
Chapter 12 Computer Science ( ICS 12).pdf
AamirShahzad527024
 
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
Python_Haegl.powerpoint presentation. tx
vishwanathgoudapatil1
 
PROGRAMMING _ Intro-Walk into Python.pdf
joel2thetag
 
TPOT: The data science assistant
Hoffman Lab
 
Vasiliy Litvinov - Python Profiling
Sergey Arkhipov
 
Python week 2 2019 2020 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Best Data Science Deep Learning In Python in Bangalore
myTectra Learning Solutions Private Ltd
 
Basic of Python- Hands on Session
Dharmesh Tank
 
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!
 

Recently uploaded (20)

PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
Chapter 1 Introduction to CV and IP Lecture Note.pdf
Getnet Tigabie Askale -(GM)
 
PDF
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
PDF
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
PDF
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
PDF
DevOps & Developer Experience Summer BBQ
AUGNYC
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
Software Development Methodologies in 2025
KodekX
 
PPTX
Comunidade Salesforce SĂŁo Paulo - Desmistificando o Omnistudio (Vlocity)
Francisco Vieira JĂșnior
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Revolutionize Operations with Intelligent IoT Monitoring and Control
Rejig Digital
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
Chapter 1 Introduction to CV and IP Lecture Note.pdf
Getnet Tigabie Askale -(GM)
 
Building High-Performance Oracle Teams: Strategic Staffing for Database Manag...
SMACT Works
 
AI Unleashed - Shaping the Future -Starting Today - AIOUG Yatra 2025 - For Co...
Sandesh Rao
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
Structs to JSON: How Go Powers REST APIs
Emily Achieng
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
Data_Analytics_vs_Data_Science_vs_BI_by_CA_Suvidha_Chaplot.pdf
CA Suvidha Chaplot
 
DevOps & Developer Experience Summer BBQ
AUGNYC
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
Software Development Methodologies in 2025
KodekX
 
Comunidade Salesforce SĂŁo Paulo - Desmistificando o Omnistudio (Vlocity)
Francisco Vieira JĂșnior
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 

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