我有一些用 Python 2.7 编写的代码,如下所示:
if (os.path.exists('/path/to/my/file/somefile.txt')):
with open('/path/to/my/file/somefile.txt', 'r') as readfile:
firstline = readfile.readline()
return firstline
当我尝试在具有 python 2.4 的系统上运行它时,出现 Invalid Syntax 错误:
with open('/path/to/my/file/somefile.txt', 'r') as readfile:
^
SyntaxError: invalid syntax
我在这里做错了什么?