将python命令结果输出到文件

将python命令结果输出到文件

我想使用 python 作为计算器并将所有内容输出到文件中。但是

mamboleo@mamboleo-K56CB:~$ python
Python 2.7.5+ (default, Sep 19 2013, 13:48:49) 
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 5**555 > output
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'output' is not defined

它给了我一个错误,我找不到如何将结果输出到文本文件中。2>也不起作用。

答案1

 out = open("output.txt", "w")
 out.write(str(5*5+9))
 out.close()

您必须打开 python 文件对象才能执行此操作。如果您运行 python 脚本,则可以使用 '>':

 python test.py > output

相关内容