✏️ Explanatory Question

Python-এ একটি “Hello World” program কীভাবে লেখা ও execute করা হয়?

👁 0 Views
📘 Detailed Answer
🟢 Easy
0
Total Views
10
Related Qs
0%
Progress
💡

Answer with Explanation

Hello World Program:

print("Hello, World!")

Execution Steps:

  • Python file তৈরি করো (hello.py)
  • Code লিখো
  • Command prompt-এ run করো
python hello.py

Output:

Hello, World!

এই program programming শেখার প্রথম ধাপ।