29
loading...
This website collects cookies to deliver better user experience
a = b = c = 1
print(id(a))
#Output - 1833296619824
print(id(b))
#Output - 1833296619824
print(id(c))
#Output - 1833296619824
a = b = c = 1
a = 2
print(id(a))
#Output - 1825080174928
print(id(b))
#Output - 1833296619824
print(id(c))
#Output - 1833296619824
a = 1
a += 2
print(a)
#Output - 3