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.

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

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)
"""
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!