I’m a Computer Science graduate transitioning into Artificial Intelligence, currently focused on building strong fundamentals in Python and Machine Learning. I previously worked in the manufacturing industry as an Electrical Design Engineer and Machine Operator, which shaped my practical and disciplined approach to problem-solving. On this blog, I share what I’m learning, small projects I build, and lessons from the journey — learning in public, one step at a time.
Nothing here yet.
After learning Python data types, the next big question I faced was: how do we store and manage multiple values together? Python solves this problem using collection data types like lists, tuples, sets, and dictionaries. In this article, I’ll walk th...

To store data in Python you need to use a variable. And every variable has its type depending on the value of the data stored. Python has dynamic typing, which means you don't have to explicitly declare the type of your variable -- but if you want to...
