✏️ Explanatory Question

Python-এ Punctuators কী? উদাহরণসহ ব্যাখ্যা করো।

👁 4 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

Punctuators হলো special symbols যা Python program-এর structure ও organization নির্ধারণ করে।

Example of Punctuators:

  • ( ) → Function call
  • { } → Dictionary
  • [ ] → List
  • , → Separator
  • : → Block define

Example Program:

numbers = [1, 2, 3]
print(numbers)

Punctuators program-এর syntax বুঝতে সাহায্য করে এবং code structure স্পষ্ট করে।