Is there a label/goto in Python?

goto, python

Solution

No, Python does not support labels and goto. It's a (highly) structured programming language.

Problem

Is there a `goto` or any equivalent in Python to be able to jump to a specific line of code?

Original source

Related problems