x = "abc".findx is a "bound" method
print x("b")
- in essense it a wrapper object that knows to push the an additional first argument onto the stack during a method call.
- This is easy if one is dealing with a stack architecture.
x = "abc".findx is a "bound" method
print x("b")