print 的输出从定向问题
print 可以用’>>‘来重定向输出,下面是例子
f = open(‘D:/python.txt‘,‘w+‘)
print >> f,"这里是我将要写入到文件D:/python.txt的东西";
f.close();
时间: 2025-01-02 16:20:00
print 的输出从定向问题
print 可以用’>>‘来重定向输出,下面是例子
f = open(‘D:/python.txt‘,‘w+‘)
print >> f,"这里是我将要写入到文件D:/python.txt的东西";
f.close();