✏️ Explanatory Question

Python-এ Indentation এবং Comments-এর গুরুত্ব ব্যাখ্যা করো।

👁 0 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

Indentation:

Python-এ indentation ব্যবহার করে block define করা হয়।

if True:
    print("Hello")

Importance:

  • Code structure define করে
  • Readable করে

Comments:

Comment code explain করে এবং execution-এ ignore হয়।

# This is comment