datanova.hashnode.devSets in Python – Built-in Duplicate BouncerIn the previous blog, we got to know about Python’s other data structure “Tuples↖︎”. In this blog, we will discuss “Set”. Let’s get started. What is a Python Set? Imagine we’re organizing a party. We make a guest list, but realize… we accidentally wr...May 10, 2025·4 min read
datanova.hashnode.devPython Tuples – The Locked Box of Data StorageTuple Operations in Python Python Tuple is a collection of objects separated by commas. A tuple is similar to a Python list in terms of indexing, nested objects, and repetition, but the main difference between the two is that Python tuple is immutabl...May 9, 2025·5 min read
datanova.hashnode.devSlice It, Dice It, Master It – The Art of Python ListsWhat is Data Structure? At its most basic level, a data structure is a way of organizing data in computer memory, implemented in a programming language. This organization is required for efficient storage, retrieval, and modification of data. It is a...May 3, 2025·6 min read
datanova.hashnode.devKnots and Knives – Untangling Strings and States in Python meaningPython Data Types- Python has built-in data types used to store different kinds of data. It is dynamically typed, which means we don’t need to declare the data type of a variable, Python automatically identifies it when a value is assigned. In python...Apr 25, 2025·6 min read
datanova.hashnode.devFrom Math to Logic – Meet Python’s Operators SquadAt the beginning of our Python journey, we encounter some key concepts—words like ‘operators’, ‘strings’, and the idea of ‘mutable vs. immutable’. At first glance, these terms might sound a bit technical or a bit complex. But here’s the good news: th...Apr 23, 2025·8 min read