पाइथन में Comments क्या है?

पाइथन में Comments क्या है? (What is Comments in Python)

  1. पायथन में Comments का उपयोग किसी भी प्रोग्राम कोड को समझाने के लिए किया जा सकता है। इसका उपयोग कोड को छिपाने के लिए भी किया जा सकता है।
  2. Comments किसी भी प्रोग्राम का सबसे उपयोगी सामान हैं। यह हमें प्रोग्राम को समझने में सक्षम बनाता है, Python में, # symbol के साथ लिखे गए किसी भी कथन को Comment के रूप में जाना जाता है। interpret Comment की व्याख्या नहीं करता है।
  3. Comment प्रोग्राम का हिस्सा नहीं है, लेकिन यह प्रोग्राम की interactivity को बढ़ाता है और प्रोग्राम को पाठनीय (Readable) बनाता है।

Python दो प्रकार की Comments का समर्थन करता है:

1) Single Line Comment:

यदि यूजर single line comment specify करना चाहता है, तो Comment # के साथ शुरू होना चाहिए?

Example

# This is single line comment.
print “Hello Python”

Output:

Hello Python

2) Multi Line Comment:

Multi Line Comment, triple quotes (“’ ‘”)के अंदर दी जा सकती है।


Example –

””’ This
Is
Multipline comment”’

Example –

#single line comment
print “Hello Python”
””’This is
multiline comment”’

Output:

Hello Python



error: Content is protected !!