In Python, immutable objects include numbers, strings, and tuples. With the last two everything is clear, but regarding the numbers there. Let's write this code:
a = 7 a = 5 As a result, the number 5 will be stored inside the variable a , but the numbers are immutable, how does it come out?