Python36 / 62

Dunder Methods (__str__ & __repr__)

Method khusus (Dunder) seperti __str__ mendefinisikan tampilan teks saat objek di-print (print(obj)).

👀 Contoh dulu

class Book:
    def __init__(self, title):
        self.title = title
    def __str__(self):
        return f"Buku: {self.title}"

Hasilnya: print(book) mencetak 'Buku: Python 101'.

💡 Dunder method diawali dan diakhiri dua garis bawah (double underscore).

📝 Sekarang giliranmu

Tuliskan method __str__ def __str__(self): return self.name.

Preview