使用點表示法進行基本屬性訪問

我們來看一個樣本課。

class Book:
    def __init__(self, title, author):
        self.title = title
        self.author = author

book1 = Book(title="Right Ho, Jeeves", author="P.G. Wodehouse")

在 Python 中,你可以使用點表示法訪問類的屬性標題

>>> book1.title 
'P.G. Wodehouse'

如果某個屬性不存在,Python 會丟擲一個錯誤:

>>> book1.series
Traceback  (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Book' object has no attribute 'series'