python3.5 的输出重定向这样写:print >>f,'hello,world',总是报错,正确的写法是?
展开全部
如果是在脚本内部,直接用open文件和写文件的方式,重定向应该是类似python test.py > file.txt这样
更多追问追答
追问
我的整个脚本是这样的:
f=open('c:\\1.txt','w')
print >> f,'hello,world!'
f.close()
line 2总是上报这样的错误:
TypeError: unsupported operand type(s) for >>: 'builtin_function_or_method' and 'tuple'
追答
应该用
print("内容", file=f)
或者
f.write('内容')
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询