文件操作读写文本文件

Posted 白小白001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件操作读写文本文件相关的知识,希望对你有一定的参考价值。

【读写txt文件】

r:只读

w:只写模式【不可读;不存在则创建;存在则清空内容】

w+:w+,写读【可读,可写】,消除文件内容,然后以读写方式打开文件。

#coding=utf-8

# 读文件
def read_file():

    # 读取文件
    read_txt = open(txt/read_txt,r)

    # 一次读取一行
    oneline = read_txt.readline()
    print(oneline:\n,oneline)

    # 一次读取所有行【接着上一条读取结束往下读】
    for line in read_txt.readlines():
        print(lines:\n,line)

    # 一次读取所有【接着上一条读取的往下读】
    all = read_txt.read()
    print(all:\n,all)

    read_txt.close()
read_file()

# 写文件
def write_file():
    # w:只写模式【不可读;不存在则创建;存在则清空内容】
    write_txt = open(txt/write_txt,w,encoding=utf-8)
    write_txt.write(hello\nnihao)
    write_txt.write(你好)

    # w+,写读【可读,可写】,消除文件内容,然后以读写方式打开文件。
    write_txt2 = open(txt/write_txt2,w+,encoding=utf-8)
    write_txt2.writelines(writelines:你好)
    write_txt2.writelines(writelines:hello)

    write_txt.close()
    write_txt2.close()
write_file()

 

以上是关于文件操作读写文本文件的主要内容,如果未能解决你的问题,请参考以下文章

C++:文件操作 | 读写文本文件

C++文件读写操作如何统计文本的行数及如何读取文件某一行内容

☀️ 学会编程入门必备 C# 最基础知识介绍—— C# 高级文件操作(文本文件的读写二进制文件的读写Windows 文件系统的操作)

C 语言文件操作 ( 配置文件读写 | 读取配置文件 | 函数接口形参 | 读取配置文件的逐行遍历操作 | 读取一行文本 | 查找字符 | 删除字符串前后空格 )

文件操作读写文本文件

5.26 C++文件读写操作