Choose a topic to test your knowledge and improve your Python skills
Which of the following is the loop in python ?
for loop in python are work on
What we put at the last of the loop ?
For loop in python is
To break the infinite loop , which keyword we use ?
which of the following is consider as a infinite loop ?
How many times it will print the statement ?, for i in range(100): print(i)
What is the final value of the i after this, for i in range(3): pass
What is the value of i after the for loop ?, for i in range(4):break
l=[],for i in l: print(l), what is the output ?
while(1): print(2), How many times a loops run ?
While(0), how many times a loop run ?
while(1==3):, how many times a loop run ?
for i in range(-3), how many times this loop will run ?
for i in [1,2,3]:, how many times a loop run ?
Which of the following is Exit control loop in python ?
In which of the following loop in python, we can check the condition ?
Which of the following loop is work on the particular range in python ?
Which of the following loop is not supported by the python programming language ?
It is possible to create a loop using goto statement in python ?