Files
Python-HV/Pass2/1 OOP basics.py
2018-03-15 15:08:44 +01:00

13 lines
180 B
Python
Executable File

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())