让我先说我是python的新手,我写了一个名为test.py的python shell。内容如下:
#!/usr/bin/python
import os
cur_dir = os.getcwd();
print 'hello world' > cur_dir+"/test.log" 2>&1
当我运行 test.py by"python test.py"
时,它说:
File "test.py", line 4
print 'hello world' > cur_dir+"/test.log" 2>&1
^
SyntaxError: invalid syntax
谁能给我一些想法?谢谢!
PS 我想要的是在 test.log 文件中写一个字符串。就这样。正如我首先说的,我对python真的很陌生,所以请不要对我这么苛刻:),我会先通读教程来了解python,谢谢大家!