0
Can Anyone share the nested while loop of any program....plss plsss?🙂🙂🙂 In python only
5 Antworten
+ 1
My first try to nested while.Run this program in computer as it requires multiple inputs from user .
https://code.sololearn.com/cFPM9TDljBf2
0
while True:
val = int(input())
for i in range(val):
# do something
if val = 666:
break
0
thanks @leshark , but can we use only while loop in nested part of while?
0
You can use whatever you want. That’s freedom)
0
okay thanks again🙂🙂