python中为什么没有属性赋值的“with”语句?
Python有一个 “with” 语句,它封装了块的执行,在块的入口和出口调用代码。有些语言的结构是这样的:
with obj: a = 1 # equivalent to obj.a = 1 total = total + 1 # obj.total = obj.total + 1
Python有一个 “with” 语句,它封装了块的执行,在块的入口和出口调用代码。有些语言的结构是这样的:
with obj: a = 1 # equivalent to obj.a = 1 total = total + 1 # obj.total = obj.total + 1