Important Notice:

Course Content
Accepting Input from the Console
0/1
Introduction to Python (Chapter-3) M3-R5.1
About Lesson

Python Comment

        पाइथन प्रोग्राम में लिखे गए वह लाइन जिसे प्रोग्राम एग्जीक्यूशन के दौरान Interpreter के द्वारा Ignored( अनदेखा ) किया जाता है। अर्थात प्रोग्राम में लिखे गए कमेंट को इंटरप्रेटर एग्जीक्यूट नहीं करता है। उसे कमेंट कहते हैं।        Comments का उपयोग प्रोग्राम में लिखे गए सेक्शन, Formula, algorithm, Logic, variables , Function , class, objects इत्यादि को explain करने के लिए किया जा जाता है। Python में Comments दो तरह के होते है –

  1. Single Line Comment
  2. Multi Line Comment
Single Line Comment:-

      पाइथन प्रोग्राम में सिंगल लाइन के कमेंट को # (hash) sign साइन का यूज करके लिखा जाता है। Comments वाले लाइन का पहला Charecter # होता है।  पाइथन Interpreter को जैसे ही किसी लाइन का पहला Character # मिलता है, वह उस लाइन को छोड़ (Ignore) कर आगे बढ़ जाता है।

जैसे-

# program to display Hello World!

print(“Hello World!”)

Multi Line Comments:-

      python में multi line comment लिखने के लिए हमें triple double quotes “”” से start करते हैं और triple double quotes से ही “”” बन्द करते हैं।

जैसे-

“””This is a multi-line comment
written using triple quotes and
more than just one line
“””
print(“Hello, World!”)

Note:- python में कमेंट नेस्टेड नहीं होते हैं अर्थात एक कमेंट के अन्दर दूसरा कमेंट नहीं हो सकता है।

Python Comment

                The line written in a Python program which is ignored by the interpreter during program execution. That is, the interpreter does not execute the comments written in the program. It is called comment.               Comments are used to explain the sections, formula, algorithm, logic, variables, function, class, objects etc. written in the program. 

There are two types of comments in Python –

  1. Single Line Comment
  2. Multi Line Comment
Single Line Comment:-

      Single-line comments are created simply by beginning a line with the hash (#) character, and they are automatically terminated by the end of line

For example:

#This would be a comment in Python

OR

#This would be a also comment

# program to display Hello World!

print(“Hello World!”)

Multi Line Comments:-

                  To write multi line comment in python, we start with triple double quotes “”” and close with triple double quotes “””.

Eg.

“””This is a multi-line comment
written using triple quotes and
more than just one line
“””
print(“Hello, World!”)

Note:- Comments are not nested in python, that is, one comment cannot contain another comment inside it.

error: Content is protected !!