Python基礎入門之魔法方法與異常處理
一.魔法方法
1.屬性訪問
通常可以通過點(.)操作符的形式去訪問對象的屬性。
class C: def __init__(self): self.x='X-man' c=C() c.x 'X-man' getattr(c , 'x' , '木有這個屬性') 'X-man' getattr(c , 'y' , '木有這個屬性') '木有這個屬性'
魔法方法:
(1)定義當用戶試圖獲取一個不存在的屬性時的行為。
__getattr__(self,name)
(2)定義當該類的屬性被訪問時的行為。
__getattribute__(self,name)
(3)定義當一個屬性被設置時的行為。
__setattr__(self,name,value)
(4)定義當一個屬性被刪除時的行為。
__delattr__(self,name)
2.描述符
(1)用於訪問屬性,它返回屬性的值。
__get__(self,instance,owner)
(2)將在屬性分配操作中調用,不返回任何內容。
__set__(self,instance,value)
(3)控制刪除操作,不返回任何內容。
__delete__(self,instance)
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.定制序列
魔法方法:
__len__(self) __getitem__(self,key) __setitem__(self,key,value) __delitem__(self,key) __iter__(self) __reversed__(self) __contains__(self,item)
4.迭代器
for i in "FishC": print(i) F i s h C
字符串就是一個容器,同時也是一個迭代對象,for語句的作用就是觸發其迭代功能,每次從容器裡依次拿出一個數據,這就是迭代操作。
Python提供瞭兩個BIF:iter()和next()。
對一個可迭代對象調用iter()就得到它的迭代器,調用next()迭代器就會返回下一個值。
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)失敗。
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:嘗試訪問未知的對象屬性。
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:索引超出序列的范圍。
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:字典中查找一個不存在的關鍵字。
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:嘗試訪問一個不存在的變量。
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的語法錯誤。
print"I love fishc.com" SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
(8)TypeError:不同類型間的無效操作。
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:除數為零。
5/0 Traceback (most recent call last): File "<pyshell#9>", line 1, in <module> 5/0 ZeroDivisionError: division by zero
2.try-except 語句
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 語句
try: f =open('我是一個不存在的文檔.txt') print(f.read()) sum=1+'1' except: print('出錯啦') finally: f.close()
4.raise 語句
raise ZeroDivisionError5/0 Traceback (most recent call last): File "<pyshell#9>", line 1, in <module> 5/0 ZeroDivisionError: division by zero
5.豐富的else語句
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魔法方法與異常處理內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Python常見異常類型處理
- python 中raise用法
- 關於Python的異常捕獲和處理
- Python 字典(Dictionary)詳細介紹
- python如何利用traceback獲取詳細的異常信息