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