Python 3.6 - Points to remember
Points to remember · A variable is any location in the computer’s memory which holds a value. · Python is memory efficient when dealing with variables as compared to other programming languages. · An identifier is a name given to a variable, function, class, list, tuple etc. Identifiers are used to identify things in Python. · Keywords are reserved words in Python that have some special meaning and they can only be used for pre-defined purpose. · Comments are always used to describe the features of a program and ignored by Python compiler and interpreter. · ‘#’ symbol is used to create a single line comment. · Python does not recommend Triple double quotes (“””) or triple single quotes (‘’’) as multi line comment. · If triple double quotes (“””) or triple single quotes (‘’’) are written as the first statement of a class, function, module etc., then they are called Docstrings and can be used t