美文网首页python学习笔记
python练手_97-磁盘写入

python练手_97-磁盘写入

作者: 学子CH | 来源:发表于2019-02-23 11:22 被阅读0次
    # -*- coding:utf-8 -*-
    # @Author: CH
    """
    @project: python study
    @time:2019/1/9-20:21
    @file_name:【程序97】磁盘写入.py
    @IDE:PyCharm 
    @else: DO NOT STOP STUDYING!!!
    """
    # 题目 从键盘输入一些字符,逐个把它们写到磁盘文件上,直到输入一个 # 为止。
    # 程序分析 无。
    if __name__ == '__main__':
        from sys import stdout
        filename = input('输入文件名:\n')
        fp = open(filename,"w")
        ch = input('输入字符串:\n')
        while ch != '#':
            fp.write(ch)
            stdout.write(ch)
            ch = input('')
        fp.close()
    
    

    相关文章

      网友评论

        本文标题:python练手_97-磁盘写入

        本文链接:https://www.haomeiwen.com/subject/nfzmeqtx.html