2014-02-15 58 views
-6

嗨,我已經嘗試了一個代碼,將爲我做一個更大的代碼。(「」)打印在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」和打印(「世界你好」),但還是沒有結果在Python的不同勢版本tryed它。

它可能很簡單。 THX

+0

剛讀碼在其認爲Ø是+ 1,但這點解決了問題。 – club998

+0

我認爲語法錯了不是嗎? –

+8

問題是你*忽略錯誤*。閱讀錯誤信息 - 並根據情況報告 - 而不僅僅是默認爲「不工作」。 (該代碼包含不少於一個語法錯誤和一個會導致異常的語義錯誤。) – user2864740

回答

0

的上while循環括號不是Python語法,請嘗試:

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

或者,更Python:

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

非常感謝!我有幾個錯誤後,但我設法修復他們謝謝你謝謝你謝謝 – club998

+0

http://stackoverflow.com/help/someone-answers – jonrsharpe