首先是安装,python没有这个,需要安装别的
1
|
|
看了一篇文章,都是直接官网的列子,根本不能用,所以自己搜集了资料,接下来介绍
这三个包是要用的,而不是只有最后一个
1
2
3
|
import goto
from dominate.tags import label
from goto import with_goto
|
这个必须有,如果有多个函数,会报错,应该放到要用的函数上面,例如
1
2
3
|
@with_goto
def xxx():
xxx
|
我的用法
1
2
3
4
5
6
|
def test(data):
label.begin
try :
xxx
except :
goto.begin
|
尝试执行要执行的程序,出错了就回到label.begin的地方
goto虽好,但是用多了会导致程序混乱,谨慎使用
补充:python3 goto跳转到指定代码行,执行代码
1.需求背景:
当执行到某一步骤后,发现结果不是想要的那种形式,希望这一次循环重新执行,需要跳转到固定位置。
2.使用goto:
(1)安装goto
1
|
pip install goto - statement
|
(2)使用goto完成一个小例子
官方文档见:https://pypi.org/project/goto-statement/
注意:如果你在ide山运行label 和 goto 下有红色波浪线提示错误。不用理会直接执行即可
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from goto import with_goto
@with_goto #必须有
def te(list_):
tmp_list = list_
label.begin #标识跳转并开始执行的地方
result = []
try :
for i, j in enumerate (list_):
tmp = 1 / j
result.append(tmp)
last_right_i = i
if i = = 1 :
print ( '----hhhhhhh' )
goto.begin
except ZeroDivisionError:
del tmp_list[last_right_i + 1 ]
goto.begin #在有跳转标识的地方开始执行
return result
if __name__ = = '__main__' :
a = te([ 1 , 3 , 4 , 0 , 6 ])
print (a)
|
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。
原文链接:https://blog.csdn.net/qq_15557299/article/details/108236723