首页 > 后端开发 > Python教程 > Python-文件

Python-文件

王林
发布: 2024-08-12 18:39:58
原创
726 人浏览过

Python - files

文件操作:

  • 文件读取
  • 文件写入
  • 追加内容

文件读取:
以 open('Logs.txt', 'r') 作为文件:

open 是 python 内置函数,用于打开文件。第一个参数是文件名,第二个参数是读取模式。
with 语句用于自动关闭文件。这将防止内存泄漏,提供更好的资源管理
as file as 关键字将打开的文件对象分配给变量 file

with open('logs.txt', 'r')as file:
    # print(file, type(file))
    content = file.readlines()
    print(content, type(content))   # this content is a list. Elements are each line in file 
    for line in content:
        print(line, end='') # end='' is defined to avoid \n as list iteration ends already with \n
        #print(line.strip())
登录后复制

输出:
['这是用于存储日志的文件', '创建于 12.08.2024n', '作者 Suresh Sundararajun']
这是用来存储日志的文件
创建于 12.08.2024
作者 Suresh Sundararaju

  • file.readlines() 将以列表形式给出文件内容
  • file.readline() 会将第一行作为字符串给出

  • 迭代列表,每一行都可以作为字符串检索

  • 迭代后面,每个str都可以作为字符检索

这里当通过for循环迭代列表时,返回以换行符结束。当用打印语句打印时,又出现了另一行。为了避免使用 strip() 或 end=''

文件写入:
以 open('notes.txt','w') 作为文件:

这与文件读取类似。唯一的语法差异是模式被指定为“w”。这里将创建notes.txt 文件。

进一步写入内容,我们可以使用 file.write('Content')
使用写入模式,每次都会创建文件并且内容将在该块内被覆盖

# Write in file
with open('notes.txt', 'w') as file:
    i=file.write('1. fILE CREATED\n')
    i=file.write('2. fILE updated\n')
登录后复制

追加到文件中:
以 open('notes.txt', 'a') 作为文件:

对于追加,mode='a' 与 file.write(str) 或 file.writelines(list) 一起使用。此处现有文件中,内容将在最后更新。

#Append file
with open('notes.txt', 'a') as file:
    file.write('Content appended\n')


#Read all the lines and store in list
with open('notes.txt', 'r') as file:
    appendcontent = file.readlines()
    print(appendcontent)
登录后复制

输出:
['1.文件已创建n', '2.文件已更新', '内容已追加']

注释:

  1. 还有一些其他模式可用 'r+','w+','a+'
  2. 可以添加例外

以上是Python-文件的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板