3) Python Naming convention
Class starts with lowercase
identifiers starts with lowercase
_identifier indicates that the identifier is private.
__identifier indicates a strongly private identifier.
__identifier__ , the identifier is a language-defined special name.
Python is case sensitive.
identifiers starts with lowercase
_identifier indicates that the identifier is private.
__identifier indicates a strongly private identifier.
__identifier__ , the identifier is a language-defined special name.
Python is case sensitive.
Comments
Post a Comment