Repeat-Until or Equivalent Loop in Python [Duplicate]
I Am a Beginner in Python Programming. I Am Trying to Work on This Algorithm That Finds Convex Hull Using Graham's Scan Method. However, in the Pseudocode...
I am a beginner in Python programming. I am trying to work on this algorithm that finds convex hull using Graham's scan method. However, in the pseudocode, there is a repeat ... until loop, which I could not figure out a way to write it in Python.
How do I write a repeat ... until loop in Python?
REPEAT
...
UNTIL cond
Is equivalent to
while True:
...
if cond:
break