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