Python Pass Statements

In python programming pass is a null statements.the difference between a comment and pass statements in python is that interpreter,the following example of pass statements.

							
class MyClass(object):
    def meth_a(self):
        pass
							
							
Share Share on Facebook Share on Twitter Share on LinkedIn Pin on Pinterest Share on Stumbleupon Share on Tumblr Share on Reddit Share on Diggit

You may also like this!