我正在运行Python程序,我想将输出传递给文件。所以在python中这个命令是
"python myfile.py > output.txt"
我在Eclipse中通过pydev运行程序,如何将参数“> output.txt
”传递给Eclipse中的运行配置?似乎没有这个选项:
当我尝试上述操作时,我收到错误:
C:\Python27\python.exe: can't open file 'output.txt': [Errno 2] No such file or directory
答案 0 :(得分:2)
转到项目的“运行”配置 - >打开“常用”标签 - >找到“标准输入和输出”选项卡。选中“文件”,然后选择要输出的文件。