搞定筆試 | 搞定筆試題 - 第 003 期

什麼是鴨子類型?

當看到一隻鳥,走起來像鴨子、游泳起來像鴨子、叫起來像鴨子那麼這隻鳥就能夠被稱之爲鴨子python

  • 關注點在對象的行爲,而不是類型(duck typing)編程

  • 好比 file, StringIO, socket 對象都支持read/write方法(file like object)微信

  • 好比定義了 _ iter _ 魔術方法的對象能夠使用forapp

鴨子類型更關注接口而非類型。異步

什麼是monkey patch ?那些地方用到了?本身如何實現?

  • 所謂猴子補丁就是運行時替換socket

  • gevent庫須要修改內置的socketasync

from gevent import monkey;monkey.patch_socket()異步編程

  • 本身實現猴子補丁:函數

    import time
    print(time.time())

    def _time():
    return 1234

    time.time = _time
    print(time.time)

什麼是自省?

  • 運行時判斷一個對象的類型能力工具

  • Python一切皆對象,用type, id, isinstance 獲取對象類型信息

  • Inspect 模塊提供了更多獲取對象信息的函數

什麼是列表或字典推導?

  • 相似: [i for i in range(10) if i % 2 == 0]

  • 一種快速生成list/dict/set的方法,用來替代 map/filter
    python<br />a = [1,2,3]<br />b = ['a','b','c']<br />d = {k:v for k,v in zip(b,a)}<br />print(d)<br />

  • 返回生成器: (i for i in range(10) if i % 2 == 0)

Python2/3的差別點

  • print 成爲函數

  • 編碼問題,Python3再也不有Unicode對象,默認str就是Unicode

    Unicode(給人看的) -> encode -> 字節串(給計算機看的)

    傳輸的時候使用字節串,操做的時候使用Unicode
  • Python3除法返回浮點數

  • 類型註解

    def hello(name: str) -> str:
    return 'hello' + name
  • 優化的super()方便調用父類函數

  • 高級解包操做: a, b, *res = range(10)

  • 限定關鍵詞參數

  • Python3從新拋出異常不會丟失棧信息(raise from)

  • 一切返回迭代器:range, zip, map, dict.values

  • yield form 連接子生成器

  • asyncio內置庫,asyn/await 原生協程支持異步編程

兼容Python2/3的工具

  • six 模塊

  • 2to3等工具轉換代碼

  • _ future _


本文分享自微信公衆號 - 鹹魚學Python(xianyuxuepython)。
若有侵權,請聯繫 support@oschina.cn 刪除。
本文參與「OSC源創計劃」,歡迎正在閱讀的你也加入,一塊兒分享。

相關文章
相關標籤/搜索