predict the output of the snippet
import sys
a,b,c,d = "abcd" ,"ab", 2, 13.54
print(sys.getsizeof(a))
print(sys.getsizeof(b))
print(sys.getsizeof(c))
print(sys.getsizeof(d))

Posted on by