width connecttion.cursor() as cursor和cursor=connecttion.cursor()有什么不同呢?
图中标红的width connecttion.cursor() as cursor和cursor=connecttion.cursor()有什么不同呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参考
==
* [浅谈 Python 的 with 语句](https://www.ibm.com/developerworks/cn/opensource/os-cn-pythonwith/)
with是一种语法,实现了上下文管理协议(Context Management Protocol),
只要对象实现了 方法 __enter__() 和 __exit__() 就可以使用此语法,
好处:with下面方法体中的内容不管执行是否失败(包括异常).都会运行__exit__(), 通常__exit__()用于资源释放等操作
width connecttion.cursor() as cursor:
print("hello")
可以翻译为:
cursor=None
try:
cursor=connecttion.cursor()
print("开始数据库操作")
except Exception:
print('process except')
finally:
print('释放cursor占用的数据库资源')
---------------------------------------------------
cursor=connecttion.cursor() 只是一种赋值语句