SSauravinspanthee.hashnode.dev·Jun 3, 2021 · 4 min readOverview of data types and objectsContains summary from the Book* : Python Data Structures and Algorithms In the last blog, we discussed about variables. We learned that everything in Python is an object and variables are basically pointers to these memory locations containing diff...01I
SSauravinspanthee.hashnode.dev·Mar 5, 2021 · 8 min readPython - Variables.Contains summary from the Book* : Python Data Structures and Algorithms What is a variable? Variables are reserved memory location to store data. They are labels that are attached to objects and act as a pointer or a reference to an object. For ex...00