• Python__基本文件操作


    ##open将操作系统发起请求,操作系统完成请求,
    # f = open('old.txt','r',encoding = 'utf-8')
    # res = f.read()
    # print(res)
    # f.close()
    
    # f = open('old.txt','r',encoding = 'utf-8')
    # res = f.readline()##读取一行
    # print(res)
    # f.close()
    
    
    ##读完文件之后必须要关闭,否则文件将一直保存在操作系统中
    
    ##执行以下操作可以在打开文件之后,自动将文件关闭
    # with open('old.txt','r',encoding = 'utf-8') as f:
    #     res = f.read()
    #     print(res)
    #     pass
    
    # f = open('old.txt','w',encoding = 'utf-8')
    # f.write('111
    ')
    # f.write('222
    ')
    # f.writelines(['a
    ','b
    ','c
    '])##表示的是可以写入多行
    # f.close()
  • 相关阅读:
    Struts2框架
    读者写者问题
    哲学家就餐问题
    理解中断
    理解处理机调度
    理解死锁
    理解进程
    Linux CentOS 6.7 挂载U盘
    家庭-养老院模型理解IOC和DI
    Bash基础
  • 原文地址:https://www.cnblogs.com/wangmengzhu/p/7157617.html
Copyright © 2020-2023  润新知