いろいろ教えてもらったので復習がてらメモ point.py """Point class This is the Point class """ class Point: __x = 0.0 __y = 0.0 z = 0.0 def __init__(self, x1, y1, z1) : self.__x = x1 self.__y = y1 self.z = z1 def toString(self) : return '(' + str(self.__x) + ', ' + str(self.__y) + ', ' + str(self.z) + ')' というクラスをつくったとします。__x,__yがプライベート変数です。"""で囲まれている部分がdocstringです。 参考:プライベートメンバ まずインタプリタを起動します。 $ python Python 2.5.1 (r2