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

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

👁 0 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

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 স্পষ্ট করে।