About 109,000 results
Open links in new tab
  1. Repeat-until or equivalent loop in Python - Stack Overflow

    Dec 15, 2017 · 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 …

  2. loops - Is there a "do ... until" in Python? - Stack Overflow

    Jun 21, 2015 · Is there a do until x: ... in Python, or a nice way to implement such a looping construct?

  3. Python: How to keep repeating a program until a specific input is ...

    Python: How to keep repeating a program until a specific input is obtained? [duplicate] Asked 12 years, 1 month ago Modified 4 years, 2 months ago Viewed 219k times

  4. python - How to use a loop to make something repeat until …

    Jul 28, 2022 · How to use a loop to make something repeat until conditions are met? [duplicate] Asked 3 years, 5 months ago Modified 3 years, 5 months ago Viewed 3k times

  5. python - How can I make a repeat until loop? - Stack Overflow

    Mar 17, 2024 · How can I make a repeat until loop? Asked 1 year, 9 months ago Modified 1 year, 9 months ago Viewed 144 times

  6. How to iterate until a condition is met in python for loop

    Mar 7, 2021 · How to iterate until a condition is met in python for loop Asked 4 years, 10 months ago Modified 3 years, 1 month ago Viewed 10k times

  7. Is there a specific way of creating a REPEAT_UNTIL loop in python ...

    Jun 5, 2014 · READ mark UNTIL mark <= 100 and mark >= 0 It then continues on with various IF loops. I need to reconstruct this code in Python, specifically using a REPEAT-UNTIL loop. I …

  8. python - How to I repeat code until certain condition is met?

    Aug 30, 2020 · How to I repeat code until certain condition is met? [duplicate] Asked 5 years, 4 months ago Modified 3 years, 4 months ago Viewed 2k times

  9. python - Looping until a specific key is pressed - Stack Overflow

    Mar 6, 2022 · I was trying to make a while loop which would stop running when a specific key is pressed. The problem is that the loop runs infinitely. My loop: import time import keyboard …

  10. python - Repeat string to certain length - Stack Overflow

    So, to repeat a string until it's at least as long as the length you want, you calculate the appropriate number of repeats and put it on the right-hand side of that multiplication operator: