"-6ren">
gpt4 book ai didi

python - python脚本中的语法错误

转载 作者:太空宇宙 更新时间:2023-11-04 08:18:28 26 4
gpt4 key购买 nike

我编写了以下脚本,它生成了一个SyntaxError:

#!/usr/bin/python
print "Enter the filename: "
filename = raw_input("> ")
print "Here is your file %r: ", % filename

txt = open(filename)
print txt.read()
txt.close()

这里是错误:

  File "ex02.py", line 4
print "Here is your file %r: ", % filename
^
SyntaxError: invalid syntax

我应该如何解决这个问题?

最佳答案

那里不能有逗号。

print ("Here is your file %r: " % filename),

关于python - python脚本中的语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10069353/

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