(“”)打印不在python中工作

时间:2014-02-15 09:19:30

标签: python

嗨,我已经尝试了一个代码,可以为我制作更大的代码。

a = 000000000000000000000000
while a <= 999999999999999999999999(

    ab + 1

    print ("""
     send, {enter}
     send, {tab}
     send, {tab}
     send, {tab}
     send, {tab}
     send, {tab}
     send, {tab}
     send, {tab}
     send, {del}
     send, {del}
     send, {del}
     send, {del}
     send, {del}
     send, {del}
    """)
    )

但打印仍然无法正常工作我已经使用打印“hello world”和print(“hello world”)在不同版本的python中尝试过它,但仍然没有结果。

它可能非常简单。 THX

1 个答案:

答案 0 :(得分:0)

while循环上的括号不是Python语法,请尝试:

while a <= 999...: # colon, not parenthesis
    a += 1 # not just a + 1, you need to assign back to a too
    print(...)

或者更多Pythonic:

for a in range(999...):
    print(...)