0% found this document useful (0 votes)
2 views2 pages

Python Loop Examples and Usage

The document provides examples of a for loop and a while loop in Python. It demonstrates a for loop that iterates through a range of numbers and a while loop that continues to prompt the user for input until a condition is met. Additionally, there is an example of a countdown using a while loop.

Uploaded by

yasirhusainkhan4
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views2 pages

Python Loop Examples and Usage

The document provides examples of a for loop and a while loop in Python. It demonstrates a for loop that iterates through a range of numbers and a while loop that continues to prompt the user for input until a condition is met. Additionally, there is an example of a countdown using a while loop.

Uploaded by

yasirhusainkhan4
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

For loop

for k in range(1, 12, 3):


print(k)

While loop
i = int(input("Enter the number: "))
print(i)
while(i<=38):
i = int(input("Enter the number: "))
print(i)

print("Done with the loop")


opposite
count = 5
while (count > 0):
print(count)
count = count - 1

Notionian 2.0

You might also like