在Python中,我可以在循环中粘贴一段长代码吗?

huangapple go评论61阅读模式
英文:

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)

huangapple
  • 本文由 发表于 2023年2月16日 03:09:48
  • 转载请务必保留本文链接:https://go.coder-hub.com/75464439.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定