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