2.09 - Object type, id, value
ভিডিও নংঃ ২.০৯ ( Object type, id, value )
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))Last updated