How to comment code in Python


In this article, we will take a look at how we can comment code in Python,

You must be aware there are two ways in which we can comment in Python Programming,

Single Line Comment:
file_read_counter = 0   # Keep a track of how many files are read and processed.
Python - Single Line Comment
Python - Single Line Comment
Multi Line Comment
"""

Program to show how to add multi-line comment
Author: Code2care
Date: 22 March 2022

"""
Python - Multi Line Comment
Python - Multi Line Comment

You can use the same ways of commenting style to comment Python code as well,

Single Line code comment:
# num = 20
Multi Line code comment
"""

a = 10
b = 20
sum = a + b

print(sum)

"""


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap