菜鸟教程 -- 学的不仅是技术,更是梦想!

Python 3 教程
Python3 教程 Python3 简介 Python3 环境搭建 Python3 VScode Python3 基础语法 Python3 基本数据类型 Python3 数据类型转换 Python3 解释器 Python3 注释 Python3 运算符 Python3 数字(Number) Python3 字符串 Python3 列表 Python3 元组 Python3 字典 Python3 集合 Python3 条件控制 Python3 循环语句 Python3 编程第一步 Python3 推导式 Python3 迭代器与生成器 Python3 with Python3 函数 Python3 lambda Python3 装饰器 Python3 数据结构 Python3 模块 Python __name__ Python3 输入和输出 Python3 File Python3 OS Python3 错误和异常 Python3 面向对象 Python3 命名空间/作用域 Python 虚拟环境的创建 Python 类型注解 Python3 标准库概览 Python3 实例 Python 测验

Python3 高级教程

Python3 正则表达式 Python3 CGI编程 Python3 MySQL(mysql-connector) Python3 MySQL(PyMySQL) Python3 网络编程 Python3 SMTP发送邮件 Python3 多线程 Python3 XML 解析 Python3 JSON Python3 日期和时间 Python3 内置函数 Python3 MongoDB Python3 urllib Python uWSGI 安装配置 Python3 pip Python3 operator Python math Python requests Python random Python OpenAI Python 有用的资源 Python AI 绘画 Python statistics Python hashlib Python 量化 Python pyecharts Python selenium 库 Python 爬虫 Python Scrapy 库 Python Markdown Python sys 模块 Python Pickle 模块 Python subprocess 模块 Python queue 模块 Python StringIO 模块 Python logging 模块 Python datetime 模块 Python re 模块 Python csv 模块 Python threading 模块 Python asyncio 模块 Python PyQt Python for 循环 Python while 循环
(追記) (追記ここまで)

Python 文件 IO

Document 对象参考手册 Python3 实例

以下代码演示了Python基本的文件操作,包括 open,read,write:

Python with 关键字参考:https://www.runoob.com/python3/python3-with-keyword.html

实例(Python 3.0+)

# Filename : test.py# author by : www.runoob.com# 写文件withopen("test.txt", "wt")asout_file: out_file.write("该文本会写入到文件中\n看到我了吧!")# Read a filewithopen("test.txt", "rt")asin_file: text = in_file.read()print(text)

执行以上代码输出结果为:

该文本会写入到文件中
看到我了吧!

Document 对象参考手册 Python3 实例

AI 思考中...

3 篇笔记 写笔记

  1. #0

    w, r, wt, rt 都是 python 里面文件操作的模式。

    w 是写模式,r 是读模式。

    t 是 windows 平台特有的所谓 text mode(文本模式),区别在于会自动识别 windows 平台的换行符。

    类 Unix 平台的换行符是 \n,而 windows 平台用的是 \r\n 两个 ASCII 字符来表示换行,python 内部采用的是 \n 来表示换行符。

    rt 模式下,python 在读取文本时会自动把 \r\n 转换成 \n

    wt 模式下,Python 写文件时会用 \r\n 来表示换行。

    8年前 (2018年04月11日)
  2. #0

    favourite45

    jas***[email protected]

    47

    在 Windows 下,文件路径前需要加 r 取消 \ 转义或者将 \\\ 转义,否则会转码错误。

    '''文件IO'''
    with open(r'C:\Users\Administrator\Desktop\s.txt','wt') as fileout:
     fileout.write("写一行中文试试\n")
    with open(r'C:\Users\Administrator\Desktop\s.txt','rt') as filein:
     print(filein.readline())

    favourite45

    jas***[email protected]

    7年前 (2019年07月14日)
  3. #0

    小白~

    ran***[email protected]

    20

    在写的文件内容的时候,可以指定文件的编码格式:

    encoding="utf-8" # 指定文件格式为 utf-8
    with open("python3_26.txt", "w", encoding="utf-8") as file_w: file_w.writelines("这是一个文件读写的测试文档\n") file_w.writelines("测试成功!")
    with open("python3_26.txt", "r", encoding="utf-8") as file_r: text = file_r.read() print("文件{}的内容:\n{}".format(file_r.name, text))

    小白~

    ran***[email protected]

    6年前 (2020年03月06日)

点我分享笔记

  • 昵称 (必填)
  • 邮箱 (必填)
  • 引用地址

AltStyle によって変換されたページ (->オリジナル) /