🚀 Day 9— 100 Days of Code Challenge I’m excited to share my learning progress on Day 9 of the #100DaysOfCode challenge. Today’s session was both engaging and insightful, as I explored the concept of functions with inputs, arguments, and parameters in Python. This project was very interesting because it helped me understand how to make programs more dynamic, reusable, and structured. 🔹 Objective: The main objective was to learn how functions can accept inputs and how arguments and parameters work together to pass data within a program, making the code more flexible and modular. 🔹 Implementation Details: • Defined functions to perform specific tasks • Passed values using parameters and arguments • Collected user inputs and processed them through functions • Generated outputs based on provided inputs • Improved code readability and organization using modular design 🔹 Concepts Learned: ✅ Functions with parameters and arguments ✅ Input handling within functions ✅ Code reusability and modular programming ✅ Logical thinking and structured problem-solving ✅ Writing clean and maintainable Python code 🔹 Key Takeaway: Understanding functions with inputs is an important step toward writing scalable programs. It allows developers to break down complex problems into smaller, manageable components. This project was very interesting and helped me gain more confidence in applying Python concepts practically. Looking forward to continuing this journey with consistency and dedication. #Day9 #100DaysOfCode #Python #CodingJourney #LearningInPublic #Programming #DeveloperJourney
More Relevant Posts
-
🚀 Day 131 of My Coding Journey Today’s problem was all about working with lists and prime indices in Python 🧠🐍 🔹 Task: Print elements that are located at prime-numbered indices in a list. 🔹 Approach: First, I created a function to check whether a number is prime. Then, I looped through the list indices. If the index is prime, I printed the corresponding element. 💡 Key Learning: This exercise helped me strengthen my understanding of: Prime number logic Index-based iteration Writing clean and reusable functions 📌 Example: Input: [8, 10, 12, 9, 97, 112, 101] Output: [12, 9, 112] (indices 2, 3, 5) Consistency is the real game-changer. Small problems like these build strong fundamentals over time 💪 #Day131 #Python #CodingJourney #ProblemSolving #LearnToCode #100DaysOfCode Rudra Sravan kumar Sagar Bomburi 10000 Coders
To view or add a comment, sign in
-
-
Almost every developer has a story like this. 💻 A laptop crashes. A bad merge wipes hours of work. A force push hits the wrong branch. And suddenly, the code you spent all night writing is gone. The truth is, most developers don’t lose work because Git is complicated. They lose work because no one teaches the simple habits that actually protect your code. 😎 If you’re serious about learning Python the right way, don’t do it alone. Our Python Mentorship Program gives you a clear roadmap. Discover more here: https://lnkd.in/dpHv3i4p #Zerotoknowing #coding #pythoncourse
To view or add a comment, sign in
-
🚀 Day 4 of My Full Stack Development Journey Codegnan Today’s focus: Python Statements 🐍 I explored the building blocks of Python programs — statements, which are essentially the instructions that a program executes. Understanding these is helping me think more logically and structure my code better. Here’s what I covered today: 🔹 Assignment statements (storing data in variables) 🔹 Conditional statements (if, elif, else) for decision-making 🔹 Loops (for, while) for repetition 🔹 Control statements like break, continue, and pass 🔹 Function definitions and return statements 🔹 Importing modules Every concept is making coding feel more intuitive and powerful. Small steps, but consistent progress 💡 💻 Practice for today: Printed even numbers from 1 to 10 using loops and conditions. Looking forward to building more and diving deeper tomorrow! #FullStackDevelopment #Python #CodingJourney #LearnInPublic #100DaysOfCode #Programming
To view or add a comment, sign in
-
-
📅 Day 6 — Classes & Exception Handling (Writing Smarter and Safer Code) Today’s learning introduced two concepts that made Python feel more structured and practical. 🔹 Classes (Object-Oriented Programming) Until now, I was writing small pieces of code. But classes help organize related data and functions together. Example idea: class Student: def init(self, name, marks): self.name = name self.marks = marks A class acts like a blueprint. Using this blueprint, we can create multiple student objects with their own data. This helps when working with larger datasets or real-world applications. 🔹 Exception Handling While coding, errors are normal. But instead of the program crashing, Python allows us to handle errors gracefully. Example: try: result = 10 / 0 except: print("An error occurred") This prevents the program from stopping suddenly and helps manage unexpected situations. ✨ What I understood today • Classes → Help structure and organize code • Exception Handling → Helps manage errors smoothly Learning Python step by step is slowly helping me see how real applications are built. #Day6 #PythonLearning #DataAnalyticsJourney #Codebasics #OnlineCredibility
To view or add a comment, sign in
-
-
#day50 problem-solving Journey LeetCode ✅ 🚀 LeetCode Practice – Difference Between Element Sum and Digit Sum Today I solved the Difference Between Element Sum and Digit Sum of an Array problem using Python. #2535 🔹 Problem Idea: Given an array of integers, we calculate: Element Sum: Sum of all numbers in the array Digit Sum: Sum of all digits of those numbers The task is to return the difference between the element sum and the digit sum. 💡 My Approach: Traverse the array and compute the element sum. Convert each number to a string to iterate through its digits. Add each digit to the digit sum. Return the difference between the two sums. 📊 Key Takeaways: ✔️ Reinforced understanding of loops and digit extraction. ✔️ Practiced breaking down numbers into individual digits. ✔️ A simple but effective exercise in problem-solving and array traversal. 👉 Consistent problem-solving helps strengthen logical thinking and coding efficiency. Looking forward to solving more challenges! 💻✨ #Python #LeetCode #CodingPractice #ProblemSolving #Programming #DataStructures 10000 Coders
To view or add a comment, sign in
-
-
After stepping away from coding practice for a couple of weeks, getting back into it felt slightly unfamiliar at first. Not because the concepts were new — I was revisiting some simple Python problems involving control flow and loops — but because momentum matters more than we often realize. Programming is one of those skills where consistency quietly compounds. Even a short pause makes you notice how much the rhythm of thinking and problem-solving matters. Getting back to it reminded me that progress isn’t always about learning something new — sometimes it’s about returning to the fundamentals and rebuilding that flow. Back to practicing again. Interesting how quickly momentum disappears when you pause — and how satisfying it is when it slowly comes back. #Python #CodingPractice
To view or add a comment, sign in
-
One thing I realized while learning to code: Good programmers don’t know everything. They just know how to figure things out. When I first started learning Python and Web Development, I thought I had to remember every syntax and every concept. But slowly I understood that the real skill in coding is: • Breaking a problem into small steps • Searching for solutions when you get stuck • Debugging patiently until the code works Coding isn’t really about memorizing things. It’s more about thinking logically and solving problems. Still learning. Still improving. One bug at a time 🚀 #Python #CodingJourney #ProblemSolving #ComputerScience #LearningToCode
To view or add a comment, sign in
-
Sometimes, the best way to move forward… is to go back to the basics. 🐍 Over the last few days, I spent time revisiting Python — not by just watching videos or reading notes, but by actually writing code, making mistakes, fixing them, and understanding why things work. I practiced and built small programs around: ✅ Functions ✅ Lists, dictionaries, and sets ✅ File handling ✅ Error handling ✅ OOP concepts ✅ Inheritance ✅ @property and magic methods ✅ Working with files and folders using the os module And honestly, this kind of practice hits differently. Every small bug I fixed taught me something. Every concept I struggled with made more sense after writing code around it. One thing this reminded me of: 👉 Good engineers are built on strong basics. No shortcuts. Just consistency, curiosity, and hands-on practice. I’ve uploaded all my Python practice programs here: 🔗 GitHub Repo: https://lnkd.in/gGUPgkWU Still learning. Still building. And enjoying the process. 🚀 If you’re also going back to the basics right now — you’re not starting over. You’re building stronger this time. #Python #LearningInPublic #PythonProgramming #GitHub #CodingJourney #SoftwareEngineering #DeveloperLife #100DaysOfCode
To view or add a comment, sign in
-
Day 28 of My Python Full-Stack Journey — Introduction to Functions 🐍 Today I learned about one of the most powerful concepts in programming — Functions. A function is a reusable block of code that performs a specific task. Instead of writing the same code again and again, we can simply call a function whenever we need it. 🔹 What I learned today: • What a function is • How to create a function using def • How to call a function • Why functions make code reusable and organized Simple Example: Python Copy code def greet(): print("Hello, welcome to Python learning!") greet() This small concept is the foundation for writing clean, modular, and scalable programs. Every day in this journey, I'm understanding how small concepts build the backbone of real-world software development. Looking forward to learning more! 🚀 #Python #100DaysOfCode #PythonJourney #Coding #Programming #LearnToCode #FullStackDeveloper
To view or add a comment, sign in
-
-
--> Python is more than just syntax— it's a problem-solving mindset. => I’ve been working on a comprehensive series covering everything from absolute basics of Python to crucial, all-around, and advanced concepts. => Whether you are just starting your coding journey or looking to solidify your foundation, these videos are designed to bridge the gap between learning and doing. And for my OS enthusiasts—I’m thrilled to share that the Operating System videos are officially ready to be staged! 🖥️✨ I’ve already posted the initial Python basics on my "YouTube" : https://lnkd.in/g3yKyUCC and "Instagram" : https://lnkd.in/gYiApRpE If you're tired of endless, confusing tutorials and want straight-to-the-point technical content, check out the links in the comments below 👇 Key Focus: Practical Python, Efficient Code Goal: Build a robust, real-world skill set 🚀 Let me know in the comments: What is the one Python topic you find the hardest to master? 👇 #Python #Programming #CodingLife #PythonLearning #OS #TechContent #Networking #LinkedInLearning #Developer #BeginnerCoder #CodeWithMe
To view or add a comment, sign in
-
Explore related topics
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development