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?
do-whileisrepeat-untilexcept that condition is logically inverted.repeat-until, the condition is evaluated at the end of the loop. So at least one iteration of the loop will always be executed before the end is reached and condition is evaluated.