AM

Abhisekh Mukherjee

Distributed Systems Engineer

Writing about the systems and tools behind reliable software.

Index

  • ▶Home00
  • ▶Articles01
  • ▶Series02
  • ▶Topics[03]
  • ▶About04

Elsewhere

GitHubLinkedInXYouTubeEmail
All topics

Topic · 1 article

python

python

Understanding Dynamic Variable Allocation in Python

I was always curious about how Python assigns values under the hood to the same variable. Example Let's say we declare: a = 2 print(type(a)) # This will give INT as a response a = 2 a = "Hello World" print(type(a)) # This will give String as a res...

Mar 25, 2025·1 min read

© 2026 Abhisekh Mukherjee