Hi I just started learning python. Is there any way to call functions in different way ?
Rather calling obj.function(arg1, arg2) I would like to call like below
"obj function arg1 arg2"
this function is part of a class.
class myClass:
def function(arg1, arg2):
# do something
Is it possible to do in python ? May be not directly but using some other
methods.
Regards, Puneet
--
https://mail.python.org/mailman/listinfo/python-list
