web-dev-qa-db-ja.com

Python print文「構文エラー:無効な構文」

9行目の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.2.2 (default, Sep  4 2011, 09:07:29) [MSC v.1500 64 bit (AMD64)] on win
32
50
JohnnyFromBF

Python 3では、printは関数です。print("hello world")のように呼び出す必要があります。

115
mikerobi

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

Python 3 print "Hello world"では、無効な構文エラーが発生します。

Python3で文字列コンテンツを表示するには、この("Hello world")ブラケットを使用する必要があります。

7
gnganpath