Files
Python-HV/Pass2/OOP basics.py
2018-03-15 14:52:03 +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())