✏️ Explanatory Question

Python-এ Comments কী? এর ব্যবহার ব্যাখ্যা করো।

👁 2 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

Comment কী?

Comment হলো এমন code যা program run হওয়ার সময় execute হয় না।

Syntax:

# This is a comment

Example:

# Adding two numbers
a = 5
b = 10
print(a + b)

Uses:

  • Code explanation
  • Debugging
  • Documentation