Python3代码指定跳转可以使用goto这个库:
安装:
pip install goto-statement
一般安装的版本是1.2
需要做以下修改才能正常使用:
python 使用goto,遇到的问题解决_奶嘴偷走初吻的博客-CSDN博客python goto 出现报错:AttributeError: 'array.array' object has no attribute 'tostring'改完就能运行了,具体怎么改的我忘记了,我记得是去github找原作者的工程研究的。https://blog.csdn.net/Ice_Prism/article/details/130724582使用方法:
python3 使用 goto 跳转执行指定代码行_yuanteng8的博客-CSDN博客python3 使用 goto 跳转执行指定代码行1. 缘起2. 使用goto(1)安装goto(2)使用goto完成一个小例子1. 缘起在实际开发中遇到这样一个问题:以下是伪代码if embedding.model is not exist:calculate embedding ## moudel_1save embedding.modelelse :embedding = load embedding.modeltry:use embeddingexcept Keyhttps://blog.csdn.net/weixin_43389082/article/details/107058787