为什么 Python 中没有 goto 语句?


是的,Python 中没有 goto 语句。让我们首先了解 C 语言中的 goto 是什么。但是,在 C 中也不鼓励使用 goto。

C 编程语言中的 goto 语句提供了一个从 'goto' 到同一函数中带标签语句的无条件跳转。以下是语法:

goto label;
..
.
label: statement;

示例

现在让我们看看一个用于 goto 的 C 程序:

#include <stdio.h> int main () { int a = 10; LOOP:do { if( a == 15) { /* skip the iteration */ a = a + 1; goto LOOP; } printf("a = %d\n", a); a++; }while( a < 20 ); return 0; }

输出

a = 10
a = 11
a = 12
a = 13
a = 14
a = 16
a = 17
a = 18
a = 19

注意 - 在 C 语言中也强烈不建议使用 goto 语句。

Python 中没有 GoTo

在 Python 中,不需要 goto,因为我们可以用 if 语句以及或、与、if-else 表达式和 while 和 for 循环(包含 continue 和 break)来实现相同的功能。

用户定义的异常

使用用户定义的异常作为替代方案:

class goto1(Exception): pass class goto2(Exception): pass class goto3(Exception): pass def loop(): print('start') num = input() try: if num<=0: raise goto1 elif num<=2: raise goto2 elif num<=4: raise goto3 elif num<=6: raise goto1 else: print('end') return 0 except goto1 as e: print('goto1') loop() except goto2 as e: print('goto2') loop() except goto3 as e: print('goto3') loop()

嵌套方法

示例

使用嵌套方法作为另一种替代方案:

def demo(): print("In the demo() function") def inline(): print("In") inline() demo()

输出

In
In the demo() function

goto-statement 模块

它是一个函数装饰器,用于在 Python 中使用 goto。已在 Python 2.6 到 3.6 以及 PyPy 上测试。使用 pip 安装它:

注意:适用于 Python 3.6 及以下版本

pip install goto-statement

让我们看一个例子 

# Python 3.6 from goto import with_goto @with_goto def range(start, stop): i = start result = [] label .begin if i == stop: goto .end result.append(i) i += 1 goto .begin label .end return result

更新于: 2022年9月20日

11K+ 浏览量

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告