About 82,600 results
Open links in new tab
  1. Python Break Inside Function - Stack Overflow

    Sep 20, 2016 · I am using Python 3.5, and I would like to use the break command inside a function, but I do not know how. I would like to use something like this: def stopIfZero(a): if …

  2. python - How to stop a function - Stack Overflow

    A simple return statement will 'stop' or return the function; in precise terms, it 'returns' function execution to the point at which the function was called - the function is terminated without …

  3. python - How to stop one or multiple for loop (s) - Stack Overflow

    Use break and continue to do this. Breaking nested loops can be done in Python using the following: for a in range(...): for b in range(..): if some condition: # break the inner loop break …

  4. What is the best way to exit a function (which has no return value) …

    return None or return can be used to exit out of a function or program, both does the same thing; quit() function can be used, although use of this function is discouraged for making real world …

  5. python - How can I break out of multiple loops? - Stack Overflow

    There is no way to do this from a language level. Some languages have a goto others have a break that takes an argument, python does not. The best options are: Set a flag which is …

  6. function - what is the difference between return and break in …

    Mar 4, 2015 · break is used to end loops while return is used to end a function (and return a value). There is also continue as a means to proceed to next iteration without completing the …

  7. python - break and continue in function - Stack Overflow

    Dec 21, 2012 · Although, raising the exception to break the loop is a really ugly way to break loops and a nice way to break your code. KISS! The simplest would be to check the condition …

  8. How to break out of while loop in Python? - Stack Overflow

    Nov 11, 2024 · Don't use while True and break statements. It's bad programming. Imagine you come to debug someone else's code and you see a while True on line 1 and then have to …

  9. How can I do a line break (line continuation) in Python (split up a ...

    In Python code, it is permissible to break before or after a binary operator, as long as the convention is consistent locally. For new code Knuth's style is suggested. [3]: Donald Knuth's …

  10. How to break out of nested loops in python? - Stack Overflow

    Nov 15, 2016 · A break will only break out of the inner-most loop it's inside of. Your first example breaks from the outer loop, the second example only breaks out of the inner loop. To break out …

Refresh