Python Tutorials – Comments
Comments are very useful to give hints to others who explores the source code later. Python allows comments in both single line and multi-line. Single line comments: This type of comments start with a hash symbol. (#) Multi-Line Comments: There…