✏️ Explanatory Question

Identity operators কী?

👁 7 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

Identity operators check করে দুইটি variable একই object কি না।

Operator Meaning
is Same object
is not Different object

Example:

a = [1,2]
b = a

print(a is b)