Python Pass Statement
Python provides different keywords which do not exists in other programming languages. pass is one of the original keyword used for nothing. pass keyword is a requirement for python block specification and syntax. Why To pass? Other languages generally uses some block specifier like {} or ; etc. For example we can define functions but if we … Read more