ভিডিও নংঃ ২.০৯ ( Object type, id, value )

টিউটোরিয়াল লিঙ্কঃ https://youtu.be/81bAd4gyuos


নিচের কোডগুলো দেখুন এবং বোঝার চেষ্টা করুন ।

print(type(5))
print(id(5))
print(type(5/2))
print(id(5/2))
a = 5
print(type(a))
print(id(a))
b = a/2
print(type(b))
print(id(b))

results matching ""

    No results matching ""