class MyClass: #My first class i = 12345 str = "Something" def myFunc(self): return 'hello world' x = MyClass() print(x.i) print(x.str) print(x.myFunc())