Files
python3-cookbook/cookbook/c05/p02_print_tofile.py

14 lines
248 B
Python
Raw Normal View History

2014-09-22 01:32:24 +08:00
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
"""
Topic: 输出重定向到文件
Desc :
"""
def print_tofile():
2015-09-17 23:20:07 +08:00
with open('d:/work/test.txt', 'wt') as f:
2014-09-22 01:32:24 +08:00
print('Hello World!', file=f)
if __name__ == '__main__':
print_tofile()