11 lines
118 B
Python
11 lines
118 B
Python
class cls(object):
|
|
def __init__(self, x):
|
|
self.x = x
|
|
|
|
def one(x):
|
|
return x+3
|
|
|
|
def nottwo():
|
|
pass
|
|
|