Rishithatestertoaidev.hashnode.dev·Jan 21, 2025Day 3 of My Python Journey: Exploring Dictionaries and SetsHello, fellow Python learners! 🚀 Today, I dove into two fundamental data structures in Python: Dictionaries and Sets. Both are powerful and versatile, with unique features that make them essential tools for solving a variety of problems. Here’s a su...Tester to AI Engineer Journeypythonday2
Mohcodingtides.hashnode.dev·Jan 18, 2025My Python Journey: From Zen to ListsWelcome to my very first post! I’m excited to begin documenting my journey of learning to code, sharing projects, and growing along the way. Why I Started This Journey Hi, I’m a husband, a father of three, and a full-time professional working with d...100DaysOfCode
K Subramanyeshwaraksubramanyeshwara.hashnode.dev·Jan 15, 2025Exploring the Digital World: A Beginner's GuideHave you ever wondered how I can send a message to my friend who is in another city? or make a video call to a relative who may be in another country? The Internet is the underlying technology that makes all these things work. Understanding how the I...1 like·47 readsWeb Development
Munilakshmi G J100daysdevops.hashnode.dev·Jan 12, 2025Day 78 of 100 Days : Mastering Terraform Variables and Best PracticesHello, DevOps enthusiasts! Today, let’s explore a key aspect of Terraform that will elevate your infrastructure-as-code (IaC) skills: variables, conditional expressions, and file structuring best practices. Whether you’re deploying resources on AWS, ...Terraform
K Subramanyeshwaraksubramanyeshwara.hashnode.dev·Jan 12, 2025The Jargons. Feat: Computer NetworkHave you ever wondered how a message from my place can reach someone in another city, state, or even country? It’s because of Computer Network. If you ask developers to explain it they will start throwing jargon like HTTP, TCP, Headers, Payload etc a...1 like·184 readslearning
Muniba Aminmuniba.dev·Jan 9, 2025Day - 5 Python LoopsUsing the for loop with Python Lists Using a for loop with Python lists allows you to iterate through each element in the list, one at a time. This is a fundamental way to work with lists in Python, making it easier to process or manipulate the eleme...34 reads100 Days of Python: My Learning JourneyPython
Bharat Singhbharatblogs.hashnode.dev·Jan 8, 2025Objects in JavaScriptHi Folks, In this article we are going to learn about objects in JavaScript. Concept of an object is inspired from real world. In real world, whatever we see around us is an object, which has some properties. Let’s understand from real world example ...JavaScript
Muniba Aminmuniba.dev·Jan 8, 2025Day 4 - Randomisation and Python ListsRandom Module The random module in Python is used to generate random numbers or make random selections. It is widely used for games, testing, and other applications where randomization is needed. Common Functions in the random Module 1.random() Gener...100 Days of Python: My Learning JourneyPython
Muniba Aminmuniba.dev·Jan 6, 2025Day 3 - Control Flow and Logical OperatorsControl Flow with if / else and Conditional Operators if / else Statement : If Statement: Checks a condition. If the condition is True, the code inside the if block runs. Else Statement: Runs if the if condition is False Critical Points The condition...100 Days of Python: My Learning Journey100DaysOfCode
Muniba Aminmuniba.dev·Jan 3, 2025Day 2 - Understanding Data Types and How to Manipulate StringsPython Primitive Data Types Python has four basic primitive data types. . Integers: These are whole numbers Example: 1 5 -10 etc . Strings: These are used for texts enclosed in Quotes Example: name = "Muniba" . Floating Point Numbers (Floats): These...1 like·28 reads100 Days of Python: My Learning JourneyPython