@JSUDHA
Building my tech foundation.
Open to entry-level Python developer roles, internships, and beginner-friendly freelance projects. Actively building strong programming foundations and problem-solving skills.
Feb 21 · 4 min read · In 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))
Join discussionFeb 17 · 3 min read · Variables 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 ...
Join discussionFeb 3 · 3 min read · What 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...
Join discussion