#! /usr/local/bin/python3 class C(object): def x(self): return 1 print(C.x) obj = C() print(obj.x)