私はJava出身なので、ここで混乱しています。
class Sample(object):
x = 100 # class var?
def __init__(self, value):
self.y = value # instance var?
z = 300 # private var? how do we access this outside Sample?
3 つの変数宣言の違いは何ですか?