Hi,
Thank you,I have some doubt in python programming like
1)Difference in between module,library,package.
2)what is difference in between built in and keyword.
Eg: None,True is Builtins not keywords.
3)what is the use of writing the code(to call main method)
if __name__=__main__:main
rather than simple mian call main()
4) can i accesee the attributes of class,using class name
like below code
class A:
atri=9
def method(self):
print 'This is method'
def my():
print 'attribute access using Class name ',A.atri
print 'methdo calling using Class name ',A.method()
my()
thanks
Mukthyar