我用Python 3.7编写了一个相当复杂的程序。但是,我正在寻找一种减少(然后再次扩展)我已经起作用的函数的方法。这样一来,只要我想回到顶部,就不必滚动200行代码。
正如我所说,我正在用Python 3.7编写代码,这似乎是一种非常简单/入门的技术。但是,我尝试使用谷歌搜索很多东西,不幸的是英语不是我的母语,并且我不知道该用什么。谷歌搜索“减少Python中的代码”对我没有用。因此,我希望您能帮助我! :)
例如
代替
1 # This is some random code
2 print("Hello")
3 print("beautiful")
4 print("World")
5 # This is some random code
我想拥有
1 # This is some random code
2-4 # Here all the other lines should be reduced to one line
5 # This is some random code