一、文件打开
文件(File)
通过Python来对文件内容进行增删改查的操作(I/O Input/Output)
操作文件的步骤
- 打开文件
- 对文件进行操作(读、写)
- 关闭文件
使用open()函数打开文件
open(file, mode=‘r’, buffering=None, encoding=None, errors=None, newline=None, closefd=True)
参数:
file 要打开文件的名字或者路径
返回值:
返回的是一个对象,就是当前被打开的文件对象
file_name = 'demo.txt'
file_obj = open(file_name)
print(file_obj)
输出结果:
<_io.TextIOWrapper name='demo.txt' mode='r' encoding='cp936'>
没有报错就表示该文件打开了
如果需要打开的文件与当前的代码在一个文件夹下,则可以直接通过文件的名字来打开
如果需要打开的文件与当前代码不在同一个文件夹下,则需要填写文件的相对路径或者绝对路径来打开
#需要打开的文件在当前代码的上一级文件
file_name = ‘../demo.txt’
#需要打开的文件在当前代码的下一级文件
#file_name = '文件夹名/demo.txt'
file_name = 'hello/demo.txt'
#需要打开的文件与当前文件不在同一个盘符(或者距离较远)可以使用绝对路径
file_name =r 'C:\Users\Administrator\Desktop\demo.txt'
#r是为了告诉解释器这个字符串中没有转义字符(\n,\u...)
使用open()打开文件时,可以将文件分为两种:
- 纯文本文件 (使用UTF-8编写的纯文本文件等)
- 二进制文件 (不是纯文本文件的都属于二进制文件,包括音频、视频、图片等)
open()这个函数打开文件时,默认打开的是纯文本文件,且编码方式默认为None
由于Python是由美国人开发的,所以它可以默认打开以ASCII编码的文本文件,因此要打开一个汉字的文本文件时,需要指定该文件的编码格式(UTF-8、GBK…)。
file_name = 'demo.txt' #文件名字或内容赋值给file_name
try:
with open('demo.txt',encoding = 'utf-8') as file_obj:
content = read(file_obj)
print(content)
except FileNotFoundError:
print(f'{file_name}没有找到')
二、关闭文件
close() 关闭文件
file_name = 'hello/demo.txt'
file_obj = open(file_name)
content = file_