IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> python——上下文管理器with -> 正文阅读

[Python知识库]python——上下文管理器with

CSDN话题挑战赛第2期
参赛话题:学习笔记


在这里插入图片描述

一、open操作文件

f=open('1.txt','r',encoding='utf-8')
res=f.readline()
print(res)
f.close()
res=f.readline()
print(res)

当使用open读取文件,关闭文件,再次读取文件时报异常
ValueError: I/O operation on closed file.

二、使用with启动文档句柄对象的上下文管理器

with open('1.txt','r',encoding='utf-8') as f1:
    res=f1.readline()
    print(res)

res=f1.readline()
print(res)

当使用with读取文件后,在with外部再次读取文件时也会报异常
ValueError: I/O operation on closed file.

三、with打开文件为何会自动关闭?

上下文管理器协议:
__enter__():进入上下文(with 操作对象时)
__exit__():退出上下文(with中的代码快执行完毕之后)
with是用来启动对象的上下文协议的,不是用来专门操作文件的

class MyOpen:

    def __enter__(self):
        return 'success'

    def __exit__(self, exc_type, exc_val, exc_tb):
        print('执行结束')

obj=MyOpen()

with obj as f:
    print(f)

四、自己实现一个类支持__enter__()和__exit__()方法

__enter__()方法的返回值正是输出的对象

class MyOpen:
    def __init__(self,filename,mode,encoding='utf-8'):
        self.f=open(filename,mode,encoding=encoding)

    def __enter__(self):
        return self.f

    def __exit__(self, exc_type, exc_val, exc_tb):
        self.f.close()


with MyOpen('1.txt','r',encoding='utf-8') as f:
    res=f.readline()
    print("res",res)

执行结果

res 666666666

五、基于pymysql实现一个操作数据库的类DBClass,实现上下文管理器协议,实现退出上下文时,自动关闭游标,断开连接

from pymysql import *


class DBClass:

    def __init__(self, user, password, host, db, port, charset="utf8"):
        self.user = user
        self.password = password
        self.host = host
        self.db = db
        self.port = port
        self.charset = charset
        self.conn = connect(user=self.user,
                         password=self.password,
                         host=self.host,
                         db=self.db,
                         port=self.port,
                         charset=self.charset)

    def __enter__(self):
        self.cur=self.conn.cursor()
        return self.cur

    def __exit__(self, exc_type, exc_val, exc_tb):
        self.cur.close()
        self.conn.close()


if __name__ == '__main__':
    db=DBClass('root','root','127.0.0.1','ceshikaifa',3306)

在这里插入图片描述

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-09-21 00:24:34  更:2022-09-21 00:26:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 10:21:06-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码