美文网首页
Python:文件操作(2019-1-15)

Python:文件操作(2019-1-15)

作者: MMatx | 来源:发表于2019-01-26 23:30 被阅读0次

    open("文件名",操作方式)

    import os
    """
    # 2
    f = open('abc.txt','r')
    try:
        date=f.read()
        print(data)
    finally:
        f.close()
    
    # 3 with as
    with open("abc.txt",'r') as f: #可不写r 默认为r
        data=f.read()
        print(data)
    """
    
    
    f = open('abc.txt','w')
    f.write("hello\n")
    f.write("MM")
    
    f.close()
    f=open('abc.txt','r')
    str=f.read()
    print(str)
    f.close()
    
    os.rename("abc.txt","aa.txt")
    

    相关文章

      网友评论

          本文标题:Python:文件操作(2019-1-15)

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