Comments

Comments

In Python, comments are used to provide explanatory notes or documentation within the code. 

Comments are lines of text that are ignored by the Python interpreter and are intended for human readers. Python has two types of comments: single-line comments and multi-line comments. Single-line comments start with the hash character (#) and continue until the end of the line. 

Multi-line comments, also known as block comments, start and end with three quotes ("""). They can be used to provide detailed explanations of a block of code or to temporarily disable code during development. It can span multiple lines and is useful for providing detailed documentation or temporarily disabling code during development. 

----------------------------------------------

Code:-

print("Let's learn comments")    #This is a comment and will be ignored by the system

Output:-

Let's learn comments

----------------------------------------------

It's worth noting that the triple-quote notation can also be used for strings, and that comments inside a function should follow the function definition and precede any code. Comments are important to make code more readable, maintainable, and understandable for others who might work with your code. Well-written comments can help others quickly understand the purpose of your code, how it works, and how it fits into a larger program.

Comments

Post a Comment

Popular posts from this blog

#1- Let's Learn Python In the least possible time

#9 - String Concatenation