2011-09-28 27 views
47

なぜPythonは9行目の文printで構文エラーを返しますか?Python printステートメント "構文エラー:構文が無効です"

import hashlib, sys 
m = hashlib.md5() 
hash = "" 
hash_file = raw_input("What is the file name in which the hash resides? ") 
wordlist = raw_input("What is your wordlist? (Enter the file name) ") 
try: 
    hashdocument = open(hash_file,"r") 
except IOError: 
    print "Invalid file." # Syntax error: invalid syntax 
    raw_input() 
    sys.exit() 
else: 
    hash = hashdocument.readline() 
    hash = hash.replace("\n","") 

のPythonのバージョンがある:Pythonの3では

Python 3.2.2 (default, Sep 4 2011, 09:07:29) [MSC v.1500 64 bit (AMD64)] on win 
32 

答えて

107

、印刷機能である、あなたはprint("hello world")のようにそれを呼び出す必要があります。

7

使用print("use this bracket -sample text")

Pythonの3 print "Hello world"で無効な構文エラーを示します。

Python3で文字列の内容を表示するには、この("Hello world")を使用する必要があります。