2012-09-17 70 views
-1

我只是想打開一個.py打開並在黑色控制檯上打印此報價。 input()與C++中的system("PAUSE")相同嗎?試圖打印簡單的文本程序,但不會工作

print(「Quote: If people do not believe that mathematics is simple, it's") 
print("  only because they do not realize how complicated life is.」) 
print("By: John von Neumann") 
input() 

謝謝我真的想讓這個工作!

這裏是輸出:

Python 3.2.3 (default, Apr 11 2012, 07:15:24) [MSC v.1500 32 bit (Intel)] 
Type "help", "copyright", "credits" or "license" for more information. 
[evaluate untitled-1.py] 
Traceback (most recent call last): 
    File "None", line 4, in <module> 
Syntax Error: print (「Quote: If people do not believe that mathematics is simple, it's): None, line 415 
+0

那麼它目前做了什麼? –

+0

'system()'中沒有什麼特別的C++ - 如果有的話,它是純C的,但它也存在於'awk',Perl等等 - 無論如何,就像名字暗示的那樣,它是依賴於系統的。 'PAUSE'必須指的是提示按鍵按下的MS-DOS命令,是的? – tripleee

+0

比以前好多了,但是,程序還在閃爍......? –

回答

2

input()應該工作,所以它可能是從一個複製和粘貼這是給你一個錯誤的破引號字符。嘗試將這些更改爲",或更好地使用"""triple quotes"""的多行字符串。

+0

大眼睛謝謝你! –

相關問題