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