✏️ Explanatory Question

String Data Type কী? এর বৈশিষ্ট্য ব্যাখ্যা করো।

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

Answer with Explanation

String হলো character-এর sequence যা text store করতে ব্যবহৃত হয়।

Example:

name = "Python"
message = 'Hello World'
----------------------------------------------------

Features of String:

  • Quotes-এর মধ্যে লেখা হয়
  • Immutable data type
  • Indexing support করে
  • Concatenation করা যায়
----------------------------------------------------

Example of Concatenation:

a = "Hello"
b = "World"
print(a + b)
----------------------------------------------------

Conclusion:

String data type text processing এবং message handling-এর জন্য খুব গুরুত্বপূর্ণ।