✏️ Explanatory Question

Python একটি Interpreted Language — বিস্তারিতভাবে ব্যাখ্যা করো।

👁 0 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

Python একটি interpreted programming language, অর্থাৎ এটি line-by-line code execute করে।

Working Process:

  • Python interpreter code পড়ে
  • Syntax check করে
  • Line-by-line execute করে

Advantages:

  • Easy debugging
  • Error সহজে detect করা যায়
  • No separate compilation প্রয়োজন

Example:

print("Hello Python")

এই বৈশিষ্ট্যের কারণে Python beginners-এর জন্য খুব সহজ।