gpt4 book ai didi

Python打印语句 “Syntax Error: invalid syntax”

转载 作者:IT老高 更新时间:2023-10-28 20:30:23 31 4
gpt4 key购买 nike

为什么 Python 在第 9 行的简单 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

最佳答案

在 Python 3 中,print 是一个函数,你需要像 print("hello world") 那样调用它。

关于Python打印语句 “Syntax Error: invalid syntax”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7584489/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com