1.

Write the syntax of while loop?

Answer»

The syntax of while loop in Python has the following syntax:

Syntax:

while: statements block 1

[else: statements block 2]



Discussion

No Comment Found