0% found this document useful (0 votes)
46 views1 page

While Loop - Py

Uploaded by

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

While Loop - Py

Uploaded by

Gaurav Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

10/29/2018 while_loop.

py

1 # loops
2 # while loop, for loop
3 # print("hello world") # 10 times
4
5 i = 2 # i = 2 , i = 3
6 while i<=10:
7 print(f"hello world {i}")
8 i = i + 1
9
10 # hello world
11 # hello world
12 # hello world

https://www.dropbox.com/s/99ksj6ss1842qhr/while_loop.py?dl=0 1/1

You might also like