SSonuinhardcore-software.hashnode.dev·Jan 21, 2025 · 1 min readThe true meaning of mutable & Immutable in Pythonmutable → Changeable / modifiable immutable → Unchangeable / unmodifiable Python works in a way that only a few programming languages do. X = 10 Y = X X = 20 print(X) # 20 print(Y) # 10 What happened here, right? Let’s go, step by ...00
SSonuinhardcore-software.hashnode.dev·Jan 20, 2025 · 1 min readPython Inner WorkingHow does Python works behind the scene? Python is one of the most popular and versatile languages today, so it makes sense to understand how it works. First, Python compiles the source code into bytecode. Then, the bytecode is interpreted and execute...00