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