Closed as not planned
Description
### In jupyter notbook
1. For float data:
x = 1.5
y = 1.5
print(id(x),id(y))
2. For complex data:
x = 1+5j
y = 1+5j
print(id(x),id(y))
Hear, In both examples we found different memory address allocation from jupyter notebook but in other platform likes vs-code or other online compilers gives same memory address.