[Python] do-while Loop
In C
do{
...
}
while(condition)
In Python
while True:
...
if not (condition): break
Last Updated on 2023/08/16 by A1go
do{
...
}
while(condition)
while True:
...
if not (condition): break
Last Updated on 2023/08/16 by A1go