在python裡面,為什麼len()就是把對象寫在括弧裡,而lower()就是把對象寫在前面,而不是括弧裡?

來源:互聯網
上載者:User
在學習code academy中遇到的小問題,求大神指教!

回複內容:

python中常見的一個設計套路就是,用全域方法去套不同類的執行個體,以調用不同執行個體的某個同名方法,例如 `repr(o)` 調用了 `o.__repr__()` , `iter(o)` 調用了 `o.__iter__()`, `len(o)` 調用了 `o.__len__()` ,但 `o.lower()` 只對字串有意義,沒必要再設計一個全域的lower方法去調它。len()是Python的Built-in Functions,詳細情況在協助文檔中搜尋“ Built-in Functions ”。第二個lower()是對象的一個方法,使用方法自然是 對象.lower()。一個是系統函數,一個是對象方法唄
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.