0 votes
in Python Flask by
Will the do-while loop work if you don’t end it with a semicolon?

1 Answer

0 votes
by

Python does not support an intrinsic do-while loop. Secondly, to terminate do-while loops is a necessity for languages like C++.

...