14 lines
248 B
Python
14 lines
248 B
Python
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
"""
|
|
Topic: 输出重定向到文件
|
|
Desc :
|
|
"""
|
|
|
|
|
|
def print_tofile():
|
|
with open('d:/work/test.txt', 'wt') as f:
|
|
print('Hello World!', file=f)
|
|
|
|
if __name__ == '__main__':
|
|
print_tofile() |