So I am confident working with functions now, and passing values in.
So for example
def myfunction(arg1,arg2,arg3):
print 'my args %s %s %s' % (arg1, arg2, arg3)
I can then call that function as follows
myfunction(arg1,arg2,arg3)
What I would like to do is move myfunction, into MyClass:
MyClass():
myfunction(arg1,arg2,arg3)
I have no idea how to pass these args (variables) in or call them from outside, as all of the examples online don't seem to match this case.
Sorry if this is very rudimentary / basic , but i am struggling to jump the gap here in my understanding.