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?