博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python with 用法
阅读量:5360 次
发布时间:2019-06-15

本文共 680 字,大约阅读时间需要 2 分钟。

  • 打开文件

    with open('em.txt', 'wb') as f:    f.write('ememem')
  • 线程lock

    lock = threading.Lock()# with里面获取lock, 退出with后释放lockwith lock:    # Critical section of code    ...
  • 数据库游标

    db_connection = DatabaseConnection()with db_connection as cursor:    # with里面获取cursor, 退出with后释放cursor    cursor.execute('insert into ...')    cursor.execute('delete from ...')    # ... more operations ...
  • 同时获取lock和数据库游标

    lock = threading.Lock()cur = db.cursor()with cur as cu, lock as locked:    ...
  • 请求后关闭

    import urllib, sysfrom contextlib import closingwith closing(urllib.urlopen('http://www.yahoo.com')) as f:    for line in f:        sys.stdout.write(line)

转载于:https://www.cnblogs.com/edhg/p/11606147.html

你可能感兴趣的文章
html5 相同形状的图形进行循环
查看>>
springboot中文官方文档
查看>>
lamdba表达式
查看>>
ThreadLocal实现线程范围内共享
查看>>
多校HDU5723 最小生成树+dfs回溯
查看>>
ASP.NET MVC分页实现之改进版-增加同一个视图可设置多个分页
查看>>
关于ASP.NET MVC开发设计中出现的问题与解决方案汇总 【持续更新】
查看>>
关于Entity Framework中的Attached报错的完美解决方案终极版
查看>>
Selenium之Web页面滚动条滚操作
查看>>
组合数据类型练习,英文词频统计实例上
查看>>
Uber回馈开源的一些软件
查看>>
day 3 修改haproxy.cfg 作业
查看>>
UIScrollView —— 缩放实现案例(二)
查看>>
【Qt】Qt Linguist介绍【转】
查看>>
sim usim Uim 区别
查看>>
网页中插入透明Flash的方法和技巧
查看>>
动态内存申请函数选择(realloc、malloc 、alloca、 calloc)
查看>>
获取元素属性get_attribute
查看>>
视觉设计师的进化
查看>>
Python/jquery
查看>>