goto

The equivalent of a GOTO in python

The equivalent of a GOTO in python Question: I am self teaching myself python 2.7. I have some experience in using BATCH, which has a GOTO statement. How do I do that in python? For example, suppose I want to jump from line 5 to line 18. I realize there have been previous questions regarding …

Total answers: 6

`goto` in Python

`goto` in Python Question: I must use goto in Python. I found entrians goto but my Python implementation (CPython 2.7.1 on Mac) does not have this module, so it doesn’t seem to be portable. It should at least work in all Python implementations which support CPython bytecode (esp. I care about CPython and PyPy). Then …

Total answers: 6