© 2026 Hashnode
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...

Before gaining the opportunity to learn programming concepts from the Dataraflow organization, I had previously encountered object-oriented programming, and it was not an enjoyable experience. The idea seemed too complex in comparison to the rather s...

If you’ve been following along with my Python journey, you already know about strings and lists. Both are super useful, but sometimes you need a way to store data in pairs – something like a “word” and its “meaning”, or a “student” and their “marks”....

Hey there! If you've mastered strings and are ready for your next Python milestone — welcome! Today, we're diving into lists, which are like super-smart containers for your data. Instead of juggling a bunch of separate variables, you can group items ...

If you’re still using lists for everything in Python, you’re missing out on its most underrated superpower — the dictionary.In this blog we will understand some basic features and functionalities of dictionaries step by step. Before we continue I wou...
