1、def__exit__(self,exc_type,exc_value,exc_traceback):
2、returnwrer
3、frombaseimportAPIBase
4、yieldele
5、filter的用法
6、try:
7、obj=TestIter()
8、importcsv
9、runningmy_with
10、forrowinreader:
11、print"executingclass_foo(%s,%s)"%(cls,x)
12、一个非常好用,很多人又不知道的功能
13、getattr
14、要快速判断一个Python代码是否为Python
15、print"__enter__method"
16、print"executingfoo(%s,%s)"%(self,x)
17、print"ExitedwithoutException"
18、Python
19、returnself.read()
20、[1,3,5]
21、#!/usr/bin/envpython
22、obj=A()
23、exec"test_second"inaction
24、print"__init__method"
25、#普通成员函数
26、x版本的代码会包含注释或文档字符串,明确指出它适用于Python
27、#furtherprocesssettings&argsifnecessary
28、returnnum
29、action={
30、classStudent(object):
31、defstatic_foo(x):
32、with的魔力
33、fromutilimport(LogFormatter,disable_logging_to_stderr,
34、__init__method
35、iter魔法
36、returnTrue
37、print"__exit__method"
38、withopen('data.csv','rb')asf:
39、def_singleton(*args,**kwargs):
40、returnself._score
41、classA(object):
42、obj.static_foo("para")#静态方法并没有任何隐式参数,但是要通过对象或者类进行调用
43、pass
44、withopen('data.csv','wb')asf:
45、raiseValueError('scoremustbetween0~100!')
46、thenamedattributeofobject.namemustbeastring.Ifthestringis
47、在传入字符串时,会使用compile(source,'
48、classTestIter(object):
49、执行结果如下:
50、deftest_third():
51、File"bin/python",line34,in
52、当发布python第三方package时,并不希望代码中所有的函数或者class可以被外部import,在__init__.py中添加__all__属性,
53、#run(settings,args)
54、getattr(my_test,"say")()
55、obj.class_foo("para")#此处类作为隐式参数被传入,就是cls
56、print"second"
57、A.class_foo("para")#更直接的类方法调用
58、else:
59、#常见with使用场景
60、#直接调用噗通的成员方法
61、foreleinxrange(len(self.lst)):
62、executingfoo(
63、deftest_second(num):
64、#两者具有相同的地址
65、其中上下文表达式是跟在with之后的表达式,该表示大返回一个上下文管理对象
66、ExitedwithoutException
67、returnfunc(*args)
68、test_three_method()
69、#单例装饰器
70、staticmethod装饰器
71、fornuminobj:
72、printt1,t2
73、argv=sys.argv[1:]
74、当条件满足时,返回的为等号后面的变量,否则返回else后语句
75、#函数输出
76、t1=Test()
77、if__name__=='__main__':
78、@staticmethod#使用staticmethod进行装饰
79、action={#可以看做是一个sandbox
80、defsum(a,b):
81、defpartial(func,*part_args):
82、x版本的语法或特性,那么在Python
83、printnum
84、只发一张网上的,然后差文档就好了,这个是记不住的
85、#initializetheparserobject:
86、staticmethod装饰器,没有任何隐式参数.python中的静态方法类似与C++中的静态方法
87、new_lst=lst[0]iflstisnotNoneelseNone
88、returnFalse
89、一行作判断
90、obj.foo("para")#此处obj对象作为成员函数的隐式参数,就是self
91、x版本中,使用注释的语法略有不同,可以使用“#”符号开头来注释单行代码,也可以使用三引号(""")来注释多行代码。
92、test_first()
93、test_partial()
94、exec和eval在执行代码时,除了返回值其他行为都相同
95、raiseValueError('scoremustbeaninteger!')
96、字符串格式化
97、读写csv文件
98、定义私有类属性
99、#向csv文件写入
100、exec在Python中会忽略返回值,总是返回None,eval会返回执行代码或语句的返回值
101、condition="para==5andtest_second(test_first)>5"
102、x版本,你可以查看代码中的注释或文档字符串。通常,Python
103、parser.error('programtakesnocommand-linearguments;'
104、settings,args=parser.parse_args(argv)
105、status=main()
106、printrow
107、partial使用上很像C++中仿函数(函数对象).
108、装饰器之单例
109、lst=[1,2,3,4,5,6]
110、相对filter而言,map和reduce使用的会更频繁一些,filter正如其名字,按照某种规则过滤掉一些元素
111、看一下下面这个例子
112、ExitedwithException
113、"test_third":test_third
114、普通成员函数,其中第一个隐式参数为对象
115、returnsettings,args
116、fun=partial(sum,2)#事先绑定一个参数,fun成为一个只需要一个参数的可调用变量
117、类中两种常用的装饰,首先区分一下他们
118、deftest_getattr():
119、例如,Python
120、executingstatic_foo(para)
121、deftest_exec():
122、instances=dict()#初始为空
123、fget是获取属性的值的函数,fset是设置属性值的函数,fdel是删除属性的函数,是一个字符串(likeacomment).从实现来看,这些参数都是可选的
124、my_test=TestGetAttr()
125、#python内建函数
126、returnself#返回对象给as后的变量
127、print"executingstatic_foo(%s)"%x
128、print"third"
129、thenameofoneoftheobject’sattributes,theresultisthevalueof
130、classmethod装饰器,类方法(给人感觉非常类似于OC中的类方法),其中第一个隐式参数为类
131、命令行处理
132、res=eval(condition,action)#解释condition并根据action对应的动作执行
133、args.extend(extra_args)
134、return','.join(map(str,self.lst))
135、"test_first":test_first,
136、x.foobar.Ifthenamedattributedoesnotexist,defaultisreturnedif
137、fromfunctoolsimportpartial
138、@score.setter#相当于score=property.setter(score)
139、runningbeforeException
140、#-*-coding:utf-8-*-
141、forlineinmy_file:
142、printobj
143、Python奇技淫巧
144、if__name__=='_
145、writer.writerows(data)#多行写入
146、#所有奇数都会返回True,偶数会返回False被过滤掉
147、defsingleton(cls):
148、printres
149、sys.exit(status)
150、通过yield和__iter__的结合,我们可以把一个对象变成可迭代的
151、writer.writerow(['name','address','age'])#单行写入
152、fromdecoratorimportinterface,export,stream
153、x版本还引入了一些新的语法和特性,例如print()函数、增强的异常处理、新的内置函数等。
154、在stackoverflow给出了类似与partial的运行方式
155、return0#success
156、print"hello"
157、defclass_foo(cls,x):
158、formatter=optparse.TitledHelpFormatter(width=78),
159、print"MethodError!"
160、#licationcodehere,like:
161、test_iter()
162、deftest_partial():
163、self._score=value
164、deftest_with():
165、>>>"mynameis{name}".format(name=name)
166、exceptAttributeError:#没有该属性,且没有指定返回值的情况下
167、各种时间形式转换
168、testattribute
169、证明了会先执行__enter__方法,然后调用with内的逻辑,最后执行__exit__做退出处理,并且,即使出现异常也能正常退出
170、test_with()
171、executingclass_foo(
172、provided,otherwiseAttributeErrorisraised.
173、Returna2-tuple:(settingsobject,argslist).
174、通过string类型的name,返回对象的name属性(方法)对应的值,如果属性不存在,则返回默认值,相当于object.name
175、__repr__=__str__
176、classMyWith(object):
177、A.static_foo("para")
178、'Storage','disable_logging_to_stderr','enable_logging_to_kids',
179、printnew_lst
180、#defineoptionshere:
181、thatattribute.Forexample,getattr(x,‘foobar’)isequivalentto
182、args=list(part_args)
183、defprocess_command_line(argv):
184、printfun(3)#实现执行的即是sum(2,3)
185、classTestGetAttr(object):
186、help='Showthishelpmessageandexit.')
187、#checknumberofarguments,verifyvalues,etc.:
188、deftest_eavl():
189、ifclsnotininstances:#如果不存在,则创建并放入字典
190、printline
191、parser.add_option(#customizeddescription;put--helplast
192、('Lily','USA','12')]
193、eval我理解为一种内嵌的python解释器(这种解释可能会有偏差),会解释字符串为对应的代码并执行,并且将执行结果返回
194、@classmethod#使用classmethod进行装饰
195、'-h','--help',action='help',
196、File"test_with.py",line28,intest_with
197、print"testmethod"
198、知道具体原理,我们可以自定义支持上下文管理协议的类,类中实现__enter__和__exit__方法
199、test_getattr()
200、#单行注释,三对双引号多行注释
201、lst=[1,2,3]
202、fromserverimportServer
203、#输出结果
204、使用装饰器实现简单的单例模式
205、fromclientimportClient
206、defscore(self,value):
207、printgetattr(my_test,"test")
208、神秘eval
209、神奇partial
210、enable_logging_to_kids,info)
211、withopen("test.","r")asmy_file:#注意,是__enter__()方法的返回值赋值给了my_file,
212、defread(self):
213、#从csv中读取文件,基本和传统文件读取类似
214、reader=csv.reader(f)
215、该list中填写可以import的类或者函数名,可以起到限制的import的作用,防止外部import其他函数或者类
216、ifargs:
217、------分割线-----
218、ifargvisNone:
219、>>>name="andrew"
220、#执行结果
221、print"runningafterException"
222、如果你无法找到注释或文档字符串,可以尝试运行代码并查看错误消息。如果代码中使用了Python
223、settings,args=process_command_line(argv)
224、'export','info','interface','stream']
225、exec
226、print"AttributeError!"
227、'mynameisandrew'
228、parser=optparse.OptionParser(
229、defwrer(*extra_args):
230、fromstorageimportStorage
231、classTest(object):
232、print"ExitedwithException"
233、property装饰器
234、withMyWith()asmy_with:
235、test_exec()#无法看到执行结果
236、instances[cls]=cls(*args,**kwargs)
237、print"runningmy_with"
238、deftest_first():
239、#打印结果
240、"test_second":test_second
241、详细原理可以查看这篇文章,浅谈Python的with语句
242、Exception
243、将property与装饰器结合实现属性私有化(更简单安全的实现get和set方法)
244、Traceback(mostrecentcalllast):
245、x版本中运行时将会出现错误。
246、@property#相当于property.getter(score)或者property(score)
247、return_singleton
248、deftest_three_method():
249、defmain(argv=None):
250、add_help_option=None)
251、defsay(self):
252、deftest_iter():
253、def__str__(self):
254、t2=Test()
255、def__iter__(self):
256、`argv`isalistofarguments,or`None`for``sys.argv[1:]``.
257、('xiaoming','china','10'),
258、'"%s"ignored.'%(args,))
259、"para":5,
260、ifexc_tracebackisNone:
261、with语句需要支持上下文管理协议的对象,上下文管理协议包含__enter__和__exit__两个方法.with语句建立运行时上下文需要通过这两个方法执行进入和退出操作.
262、__enter__method
263、利用用闭包的特性绑定预先绑定一些函数参数,返回一个可调用的变量,直到真正的调用执行
264、__exit__method
265、defscore(self):
266、property(fget=None,fset=None,fdel=None,=None)
267、"test_second":test_second,
268、getattr(object,name[,default])Returnthevalueof
269、raiseException
270、File"test_with.py",line33,in
271、ifnotisinstance(value,int):
272、return3
273、print"------分割线-----"
274、exceptAttributeError:
275、property有三个方法getter(),setter()和delete()来指定fget,fset和fdel。这表示以下这行
276、deffoo(self,x):
277、通过__str__的重写,可以直接通过想要的形式打印对象
278、returninstances[cls]
279、x版本。
280、#使用范例
281、__all__=['APIBase','Client','LogFormatter','Server',
282、printfilter(lambdax:x%2!=0,lst)
283、self.lst=[1,2,3,4,5]
284、@singleton
285、deftest_second():
286、exec(compile(__file__f.read(),__file__,"exec"))
287、ifvalue100:
288、writer=csv.writer(f)
289、data=[
290、returna+b
291、def__init__(self):
292、testmethod
293、print"runningbeforeException"
294、test="testattribute"
295、def__enter__(self):
296、最后,如果你无法确定代码的版本,可以使用Python的version()函数来获取当前Python解释器的版本。