pythonwithsudha.hashnode.devDay-4 Python Foundations — Variables, Data Types, Operators & Input HandlingIn Day-4 of my Python learning journey, I explored how Python manages memory, variables, data types, operators, and different ways of taking input. Memory & Identity in Python num = 5 print(id(num)) 19h ago·4 min read
pythonwithsudha.hashnode.devDay-3: Core Data Structures in Python — List, Tuple, Set, DictionaryIn Python, data structures help store and organize collections of data efficiently.Today I learned four important built-in data structures: List Tuple Set Dictionary Each has different behavior 19h ago·6 min read
pythonwithsudha.hashnode.devDAY-2 Python Basics – Variables, Strings, and SlicingVariables in Python A variable is a container used to store values. It helps in storing and accessing data easily. Example: x = 2 x → Variable name 2 → Value stored inside the variable Variables can be updated: x = 2 x = 9 Python automatically ...5d ago·3 min read
pythonwithsudha.hashnode.devDAY-1 Getting started with pythonWhat is Python? Python is a high-level, interpreted, object-oriented programming language that is easy to read and write.It was designed to be simple, so beginners can focus on problem-solving instead of complex syntax. Author and YearPython was crea...Feb 3·3 min read