Sharan Basappa <sharan.basa...@gmail.com> writes:

> Is there a difference between functions and methods in Python.

Somewhat simplified: a method is a function with the
method's associated object implicitly passed as first argument.

For a Python defined method "m", you can get the corresponding
function via "m.__func__" (this is not necessarily true
for methods defined in "C", among them built-in methods).

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to