Advertisements
Advertisements
Question
Write the syntax of the while loop.
Short/Brief Note
Advertisements
Solution
The syntax of while loop in Python has the following syntax:
Syntax:
while:
statements block 1
[else:
statements block 2]
shaalaa.com
Control Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The condition in the if statement should be in the form of ______
Which is the most comfortable loop?
What is the output of the following snippet?
i=1
while True:
if i%3 ==0:
break
print(i,end='')
i +=1
Which amongst this is not a jump statement?
List the control structures in Python.
Write is the syntax of if..else statement?
Write a detail note on for loop?
Write a detailed note on if..else..elif statement with suitable example.
Write a program to display all 3 digit odd numbers.
Write a program to display a multiplication table for a given number.
