英文:
Can I paste a long code in a loop in python
问题
我尝试过这样做:
code = [
你的200行代码
]
while True:
if 例子 == 例子:
代码
else:
退出()
但是并没有按预期工作。请帮忙。
英文:
if you have a 200 line code and you want to paste in a loop, how would you do it, without ruining the loop
i tried this:
code = [
your 200 line code
]
while True:
if example = example
code
else:
exit()
and expected to work. Help please
答案1
得分: 0
只需突出显示您想要放在循环中的所有内容,然后按制表键(添加缩进)。
英文:
Just highlight everything you want to be in the loop and press tab (adding indent)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论