【Python中・上級者向け】Dunderとは? - Qiita

はじめに Everything is an object Pythonは全てオブジェクトである。 以下のように数字は int というクラスで 文字列は str というクラスである。 a = 1 b = "abc" type(a) # typ...