can we use for loop in while loop in python code example
Example 1: python do while loop
while True:
//do something
if (""" break condition """):
break
Example 2: python do while loop
i = 1
while True:
print(i)
i = i + 1
if(i > 3):
break