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-创建文件脚本的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程