13 lines
180 B
Python
Executable File
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())
|