当前位置: 首页 > 工具软件 > goto > 使用案例 >

python goto 用法

凤衡
2023-12-01

python goto 用法

pip install goto-statement
from goto import with_goto
@with_goto
def range(start, stop):
    i = start
    result = []
    label.begin
    print("转到begin")
    if i == stop:
        goto.end
    result.append(i)
    i += 1
    goto.begin
    label.end
    print("转到end")
    return result
range(2, 3)
 类似资料: