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