Hi,
I have a file named demo.py.The contents of the file are:
class a:
name="swapna"
def show(self):
print a.name
s=a()
s.show()
When I execute the file it gives me the following error:
"<bound method a.show of <__main__.a instance at 0x009D58C8>>"
Kindly advice on how to proceed with it.