🚀 Python Journey — Day 12 | Implementing Functions | 10000 Coders Today I started implementing functions in Python and practiced converting different problems into reusable function-based solutions. Problems I solved : • Print numbers from 1 to n • Print numbers from m to n • Reverse numbers from n to 1 • Reverse numbers from n to m • Sum of n natural numbers • Factorial of a number • Sum of numbers from m to n • Product of numbers from m to n • Print factors of a number • Count number of factors • Prime number check • Even numbers from m to n • Odd numbers from m to n • Count of even and odd numbers • Reverse a string • Palindrome string check I implemented these problems using functions along with for and while loops to understand how logic can be organized into reusable blocks. Today's learnings: ✅ Implementing functions using def ✅ Passing parameters to functions ✅ Using return values from functions ✅ Reusing logic instead of repeating code ✅ Writing cleaner and more structured programs Today felt like an important step in writing better and more organized Python code. Thanks to Rudra Sravan kumar sir for the guidance and continuous support.. Learning daily and getting more confident 📌 Consistency > Motivation On to Day 13 #PythonJourney #Day12 #PythonFullStack #10000coders #LearningInPublic #Functions #ProblemSolving #CodeEveryDay #FutureDeveloper #KeepLearning #PythonDeveloper
More Relevant Posts
-
🚀 Python Journey — Day 14 | Functions with List Operations | 10000 Coders Today I practiced implementing functions on list-based problems and improved my understanding of handling collections in Python. Problems I solved : • Add an element to a list • Remove an element from a list • Find maximum value in a list • Find minimum value in a list • Sum of all elements in a list • Count occurrence of an element • Reverse a list using logic • Sort a list using nested loops • Remove duplicates from a list • Merge two lists • Find common elements between lists • Print even numbers in a list • Print odd numbers in a list • Check whether a list is palindrome • Count positive, negative and zero values I implemented these problems using functions along with loops and conditional logic to strengthen my understanding of list manipulation and reusable coding practices. Today felt productive as I explored different real-world style list operations. Thanks to Rudra Sravan kumar sir for the guidance and continuous support. Learning daily and getting more confident On to Day 15 #Python #PythonDeveloper #1000Coders #Coding #LearningJourney #ProblemSolving #CodeEveryDay #FutureDeveloper #KeepLearning
To view or add a comment, sign in
-
🚀 100 Days of Code – Restarting My Python Journey #Day16 of #100DaysOfCode Continuing my Python journey with 📘 “100 Days of Code: The Complete Python Pro Bootcamp” on Udemy by Angela Yu (London App Brewery). Day 16 Highlights: - Object-Oriented Programming (OOP) - Why OOP matters in real-world applications - Classes & Objects - Attributes & Methods - Working with external packages (Python Package Index) - Introduction to Turtle Graphics 🐢 🎯 Project — Coffee Machine (OOP Version ☕) Refactored the coffee machine project using OOP principles — organizing code into classes and making it more modular, reusable, and scalable. 🔗 Check out my progress here: https://lnkd.in/gAufnQ8F One key takeaway: OOP transforms messy code into structured, maintainable systems — this is how large applications are built. The focus remains: consistency + deep understanding + building in public. 💡 Small steps daily. Big results over time. More updates coming soon… stay tuned! #100DaysOfCode #Python #CodingJourney #LearnInPublic #DeveloperLife #GitHub #Consistency #Day16 #Udemy #BackToLearning #OOP
To view or add a comment, sign in
-
-
🚀 Day 45 | Python Lists Practice 10000 Coders Today I practiced Python Lists and solved several problems to understand how lists work and how they help manage multiple values efficiently. During today’s practice, I focused on performing different operations on lists such as accessing elements, looping through lists, and applying logic to solve problems. The problems I solved include: • Find the Largest Element in a List – Iterating through the list and comparing values to find the maximum number. • Find the Smallest Element in a List – Identifying the minimum value using comparison logic. • Sum of Elements in a List – Adding all numbers using a loop. • Count Even and Odd Numbers – Checking each element using conditional statements. • Reverse a List – Reversing the order of elements using loops/slicing. • Find Duplicate Elements – Detecting repeated values in a list. • Remove Duplicates from a List – Creating a new list with unique elements. • Find the Second Largest Number – Sorting or comparing values to get the second highest element. By solving these problems, I improved my understanding of: • List operations in Python • Using loops with lists • Applying conditions on list elements • Writing clean and logical Python programs Step by step, I am improving my problem-solving skills and gaining more confidence in Python programming. 💻 #Day45 #Python #Lists #ProblemSolving #ProgrammingLogic #10000Coders #FullStackJourney
To view or add a comment, sign in
-
Day 3 of #100DaysOfCode – Python Practice Continues! Today I focused on improving my problem-solving skills with numbers and lists 🐍💡 📌 What I practiced today (Programs 26–40): 🔹 Number-based problems ✔️ Second largest element ✔️ Leap year check ✔️ Even & odd count ✔️ GCD & LCM ✔️ Armstrong number ✔️ Perfect number ✔️ Count digits ✔️ Factors of a number 🔹 List-based problems ✔️ Reverse a list ✔️ Merge two lists ✔️ Find common elements ✔️ Remove element from list ✔️ Frequency of elements ✔️ Check if list is sorted 💡 Key Learnings: ➡️ Improved logical thinking ➡️ Better understanding of loops & conditions ➡️ Hands-on with list operations and real-world scenarios ⚡ Faced small errors while coding, but debugging helped me learn deeper — that’s where real growth happens! 🔥 Consistency is building confidence day by day Global Quest Technologies ✨ #100DaysOfCode #Python #PythonProgramming #CodingJourney #LearnPython #ProblemSolving #Developer #CodingLife #TechSkills #SoftwareDevelopment #Debugging #GrowthMindset #GlobalQuestTechnologies #GQT #Day3Challenge
To view or add a comment, sign in
-
🚀 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
-
-
🚀 100 Days of Code – Restarting My Python Journey #Day8 of #100DaysOfCode Continuing my Python journey with 📘 “100 Days of Code: The Complete Python Pro Bootcamp” on Udemy by Angela Yu (London App Brewery). Day 8 Highlights: - Functions with Inputs - Arguments vs Parameters - Positional Arguments and Keyword Arguments - Passing data between functions Wrapped it up with a classic mini project — 🔐 Caesar Cipher Built an encryption and decryption tool that shifts letters based on a key — a simple yet powerful introduction to how basic cryptography works. 🔗 Check out my progress here: https://lnkd.in/gAufnQ8F One key takeaway: Functions with parameters make code flexible, reusable, and much closer to real-world applications. The focus remains: consistency + deep understanding + building in public. 💡 Small steps daily. Big results over time. More updates coming soon… stay tuned! #100DaysOfCode #Python #CodingJourney #LearnInPublic #DeveloperLife #GitHub #Consistency #Day8 #Udemy #BackToLearning
To view or add a comment, sign in
-
-
🚀 Day 7 of My Python Learning Journey Today was all about Conditional Statements in Python — a fundamental concept that brings decision-making into programs. Here’s what I explored today 👇 🔹 if statement → Used to check conditions and execute code only when the condition is true 🔹 if-else statement → Introduced fallback logic when a condition is false 🔹 if-elif-else ladder → Helped me handle multiple conditions efficiently 💻 Hands-on Practice I Did: ✔️ Age eligibility checker ✔️ Attendance-based exam eligibility ✔️ Budget vs price comparison ✔️ Shopping cart free delivery logic ✔️ Grade classification system ✔️ Simple Calculator (2 versions 🔥) ✔️ Even/Odd number checker ✔️ Positive/Negative/Zero identifier All tasks are implemented with user inputs and real-world logic to strengthen understanding. You can check out my code here 👉 https://lnkd.in/gWYTz6nf 💡 Key Learning: Conditional statements are the backbone of logic building. They are used everywhere — from login systems to real-world applications like pricing, validation, and automation. 🎯 Next Goal: Keep building more real-world mini projects using Python and strengthen my problem-solving skills as I move toward full stack development. #Day7 #Python #CodingJourney #100DaysOfCode #LearningInPublic #FullStackDevelopment Codegnan Saketh Kallepu
To view or add a comment, sign in
-
🚀 100 Days of Code – Restarting My Python Journey #Day15 of #100DaysOfCode Continuing my Python journey with 📘 “100 Days of Code: The Complete Python Pro Bootcamp” on Udemy by Angela Yu (London App Brewery). 🎯 Day 15 Project — Coffee Machine ☕ Built a console-based coffee machine simulation that can: - Process user orders - Check resource availability (water, milk, coffee) - Handle coin transactions - Calculate change - Update machine resources after each order This project really felt like building a mini real-world system, combining logic, functions, and data handling. 🔗 Check out my progress here: https://lnkd.in/gAufnQ8F One key takeaway: Breaking down a real-world problem into smaller logical steps is the key to building scalable programs. The focus remains: consistency + deep understanding + building in public. 💡 Small steps daily. Big results over time. More updates coming soon… stay tuned! #100DaysOfCode #Python #CodingJourney #LearnInPublic #DeveloperLife #GitHub #Consistency #Day15 #Udemy #BackToLearning
To view or add a comment, sign in
-
-
🚀 100 Days of Code – Restarting My Python Journey #Day10 of #100DaysOfCode Continuing my Python journey with 📘 “100 Days of Code: The Complete Python Pro Bootcamp” on Udemy by Angela Yu (London App Brewery). Day 10 Highlights: - Functions with Outputs - return Statement - Understanding Print vs Return Wrapped it up with a practical mini project — 🧮 Calculator Built a calculator that performs multiple operations using functions — focusing on returning values and reusing them efficiently. 🔗 Check out my progress here: https://lnkd.in/gAufnQ8F One key takeaway: print() shows results, but return makes your code powerful and reusable. The focus remains: consistency + deep understanding + building in public. 💡 Small steps daily. Big results over time. More updates coming soon… stay tuned! #100DaysOfCode #Python #CodingJourney #LearnInPublic #DeveloperLife #GitHub #Consistency #Day10 #Udemy #BackToLearning
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