2021-09-20-python-创建文件脚本
2021/9/20 11:07:21
本文主要是介绍2021-09-20-python-创建文件脚本,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
创建文件脚本
#!/usr/bin/python3 import os def get_fname(): while 1: fname = input('文件名:') if not os.path.exists(fname): break print('文件名已存在,请重试!') return fname def get_content(): content = [] print('请输入内容,在单独的一行输入end结束!') while 1: line = input('(end to quit)> ') if line == 'end': break content.append(line) return content def write_file(fname,content): with open(fname, 'w') as fjob: fjob.writelines(content) if __name__ == '__main__': fname = get_fname() content = get_content() content = ['%s\n' % line for line in content] write_file(fname,content)
这篇关于2021-09-20-python-创建文件脚本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型