web-dev-qa-db-fra.com

Python print “Erreur de syntaxe: syntaxe non valide”

Pourquoi Python me donne-t-il une erreur de syntaxe à la simple déclaration print de la ligne 9?

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","")

La version de Python est:

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

Dans Python 3, l’impression est une fonction, vous devez l’appeler comme print("hello world").

115
mikerobi

Utilisez print("use this bracket -sample text")

Dans Python 3 print "Hello world" donne une erreur de syntaxe non valide.

Pour afficher le contenu d'une chaîne en Python3, vous devez utiliser cette ("Hello world") supports.

7
gnganpath