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

Looping in Python

Computer Science with python

Uploaded by

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

Looping in Python

Computer Science with python

Uploaded by

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

General syntax of for loop:

for varibale in range(parmater1,parameter2,parameter3):


statement1
statement2
..
..
..
statementn
eg:
for i in range(3):
print("jhkhkkhkh")

while loop:
The general syntax,
intialize looping variable
while condition/expresion:
statement1
statement2
..
..
..
statementn
increment/decrement
eg:
i = 3
while i>0:
print("hello")
i=i-1

You might also like