一.魔法方法
1.属性访问
通常可以通过点(.)操作符的形式去访问对象的属性。
1
2
3
4
5
6
7
8
9
10
|
class c:
def __init__( self ):
self .x = 'x-man'
c = c()
c.x
'x-man'
getattr (c , 'x' , '木有这个属性' )
'x-man'
getattr (c , 'y' , '木有这个属性' )
'木有这个属性'
|
魔法方法:
(1)定义当用户试图获取一个不存在的属性时的行为。
1
|
__getattr__( self ,name)
|
(2)定义当该类的属性被访问时的行为。
1
|
__getattribute__( self ,name)
|
(3)定义当一个属性被设置时的行为。
1
|
__setattr__( self ,name,value)
|
(4)定义当一个属性被删除时的行为。
1
|
__delattr__( self ,name)
|
2.描述符
(1)用于访问属性,它返回属性的值。
1
|
__get__( self ,instance,owner)
|
(2)将在属性分配操作中调用,不返回任何内容。
1
|
__set__( self ,instance,value)
|
(3)控制删除操作,不返回任何内容。
1
|
__delete__( self ,instance)
|
1
2
3
4
5
6
7
8
9
|
class mydescriptor:
def __get__( self ,instance,owner):
print ( "getting..." , self ,instance,owner)
def __set__( self ,instance,value):
print ( "setting..." , self ,instance,value)
def __delete__( self ,instance):
print ( "deleting..." , self ,instance)
class test:
x = mydescriptor()
|
3.定制序列
魔法方法:
1
2
3
4
5
6
7
|
__len__( self )
__getitem__( self ,key)
__setitem__( self ,key,value)
__delitem__( self ,key)
__iter__( self )
__reversed__( self )
__contains__( self ,item)
|
4.迭代器
1
2
3
4
5
6
7
|
for i in "fishc" :
print (i)
f
i
s
h
c
|
字符串就是一个容器,同时也是一个迭代对象,for语句的作用就是触发其迭代功能,每次从容器里依次拿出一个数据,这就是迭代操作。
python提供了两个bif:iter()和next()。
对一个可迭代对象调用iter()就得到它的迭代器,调用next()迭代器就会返回下一个值。
1
2
3
4
5
6
7
8
9
10
11
12
|
string = "fishc"
it = iter (string)
next (it)
'f'
next (it)
'i'
next (it)
's'
next (it)
'h'
next (it)
'c'
|
5.生成器
对于调用一个普通的python函数,一般是从函数的第一行代码开始执行,结束于return语句、异常或者所有语句执行完毕。
二.异常处理
1.异常类型
(1)assertionerror:断言语句(assert)失败。
1
2
3
4
5
6
7
8
9
|
my_list = [ "小甲鱼" ]
assert len (my_list)> 0
my_list.pop()
'小甲鱼'
assert len (my_list)> 0
traceback (most recent call last):
file "<pyshell#3>" , line 1 , in <module>
assert len (my_list)> 0
assertionerror
|
(2)attributeerror:尝试访问未知的对象属性。
1
2
3
4
5
6
|
my_list = []
my_list.fishc
traceback (most recent call last):
file "<pyshell#1>" , line 1 , in <module>
my_list.fishc
attributeerror: 'list' object has no attribute 'fishc'
|
(3)indexerror:索引超出序列的范围。
1
2
3
4
5
6
|
my_list = [ 1 , 2 , 3 ]
my_list[ 3 ]
traceback (most recent call last):
file "<pyshell#3>" , line 1 , in <module>
my_list[ 3 ]
indexerror: list index out of range
|
(4)keyerror:字典中查找一个不存在的关键字。
1
2
3
4
5
6
|
my_dict = { "one" : 1 , "two" : 2 }
my_dict[ "three" ]
traceback (most recent call last):
file "<pyshell#5>" , line 1 , in <module>
my_dict[ "three" ]
keyerror: 'three'
|
(5)nameerror:尝试访问一个不存在的变量。
1
2
3
4
5
|
fishc
traceback (most recent call last):
file "<pyshell#6>" , line 1 , in <module>
fishc
nameerror: name 'fishc' is not defined
|
(6)oserror:操作系统产生的异常。
(7)syntaxerror:python的语法错误。
1
2
|
print "i love fishc.com"
syntaxerror: missing parentheses in call to 'print' . did you mean print (...)?
|
(8)typeerror:不同类型间的无效操作。
1
2
3
4
5
|
1 + '1'
traceback (most recent call last):
file "<pyshell#8>" , line 1 , in <module>
1 + '1'
typeerror: unsupported operand type (s) for + : 'int' and 'str'
|
(9)zerodivisionerror:除数为零。
1
2
3
4
5
|
5 / 0
traceback (most recent call last):
file "<pyshell#9>" , line 1 , in <module>
5 / 0
zerodivisionerror: division by zero
|
2.try-except 语句
1
2
3
4
5
6
7
8
|
try :
int ( 'abc' )
sum = 1 + '1'
f = open ( '我是一个不存在的文档.txt' )
print (f.read())
f.close()
except (valueerror,typeerror,oserror) as reason:
print ( '出错\n错误原因是:' + str (reason)')
|
3.try-finally 语句
1
2
3
4
5
6
7
8
|
try :
f = open ( '我是一个不存在的文档.txt' )
print (f.read())
sum = 1 + '1'
except :
print ( '出错啦' )
finally :
f.close()
|
4.raise 语句
1
2
3
4
5
|
raise zerodivisionerror5 / 0
traceback (most recent call last):
file "<pyshell#9>" , line 1 , in <module>
5 / 0
zerodivisionerror: division by zero
|
5.丰富的else语句
1
2
3
4
5
6
7
8
9
10
11
12
13
|
try :
int ( 'abc' )
except valueerror as reason:
print ( '出错啦:' + str (reason))
else :
print ( '没有任何异常!' )
try :
with open ( 'data.txt' , 'w' ) as f:
for each_line in f:
print (each_line)
except oserror as reason:
print ( '出错啦:' + str (reason))
|
总结
到此这篇关于python基础入门之魔法方法与异常处理的文章就介绍到这了,更多相关python魔法方法与异常处理内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/weixin_63414347/article/details/121442319