Day 26 of my #100DaysOfCode challenge 🎥 Today I’m sharing a screen recording of my hands-on practice on Python Data Structures (Programs 251–260) 💻 📌 Covered concepts: ✔ Stack & Queue using collections.deque ✔ Stack & Queue using Classes ✔ Linked List implementation ✔ Singly, Doubly & Circular Linked Lists ✔ Stack & Queue using Linked List 💡 This session helped me understand how data structures work internally with real implementations, not just theory. 📄 Practiced with proper code + input/output, making it more practical and interview-ready. Consistency is the key to success 💯 Learning, building, growing every day 🚀 🏢 Thanks to Global Quest Technologies (GQT) for continuous guidance. #Day26 #100DaysOfCode #Python #DataStructures #GlobalQuestTechnologies #CodingJourney #Learning #Programming 🎯
More Relevant Posts
-
#DAY02 #Nextwave #Pythonprogramminglanguage Just solved a simple yet satisfying coding challenge 💻✨ Given a word, I wrote a Python program to print stars ⭐ based on the length of the word. Example: Input ➡️ "qwerty" Output ➡️ ****** It’s a great reminder that even small problems help build strong fundamentals in programming 🚀 Here’s the code snippet I used 👇 word = input() word_length = len(word) result = "*" * word_length print(result) Consistency in practicing coding problems is key to mastering logic and problem-solving skills 🔑 #Python #CodingPractice #ProblemSolving #Programming #LearningJourney #DeveloperLife
To view or add a comment, sign in
-
-
Mastering the basics of Python 💻 Covered key concepts like: • Operators (Assignment, Logical, Bitwise) • Data Structures (Lists, Strings) • Conditional Statements & Loops • Functions & Scope of Variables • File Handling & Exception Handling • Introduction to OOP Strong fundamentals = Strong coding skills 🚀 Consistent learning is the real game changer. #Python #Programming #Coding #DataAnalytics #Learning #TechSkills #StudentLife #CareerGrowth #Upskill #PythonBasics Follow Rishabh Singh for more information
To view or add a comment, sign in
-
Day 20 of #100DaysOfLearning Today, I explored Operator Overloading in Python with a real-world example Instead of using operators like + only for numbers, we can redefine their behavior for our own classes. -Example: Bank Account System I created a class where adding two accounts combines their balances: a1 + a2 → total balance This makes the code more intuitive and readable, just like real-world logic! Key Learning: __add__() lets us customize the + operator Operator overloading improves code readability It brings real-world meaning into programming concepts Small concept, but powerful in building clean and smart applications. Consistency is the real game changer On to Day 21 #Python #OOP #OperatorOverloading #CodingJourney #100DaysChallenge #LearnByDoing #SkillShikshya
To view or add a comment, sign in
-
-
#DAY01 #NextWave #PythonProgramming 🚀 Kicking Off: Introduction to Programming! Today’s session focused on building a strong foundation in programming—perfect for beginners starting their tech journey. Here’s what we covered: 🔹 Basic Terminology – Understanding the language of programming 🔹 Programming Language Fundamentals – How code actually works 🔹 Why Python? – Exploring why it’s one of the most popular beginner-friendly languages 🔹 Arithmetic Operators – Using Python as a simple calculator Every expert was once a beginner. The key is to start, stay curious, and keep practicing. 💡 #Programming #Python #LearningJourney #TechSkills #BeginnerFriendly #CodingBasics
To view or add a comment, sign in
-
-
we're always looking for resources worth sharing with our community. this one made the cut. 👇 201 Python Programming Exercises for All. A free, structured practice guide that covers the fundamentals every developer actually needs: → Tuples, Lists & Strings → Dictionaries & Data Types → Loops, Conditionals & Functions → Classes, Exceptions & Regular Expressions whether you're a student writing your first loop, a professional refreshing your skills, or switching careers into tech — the fastest way to get better at Python is to write more Python. this resource gives you 201 reasons to start today. 📌 credit & full kudos to Edcorner Learning for putting this together. 🟢 save this post. you'll want it later. #Python #PythonProgramming #TechCommunity #LearnToCode #CodeNewbie #100DaysOfCode #SoftwareDevelopment #PythonDeveloper #DataScience #CareerInTech #Upskilling #TechEducation #ProgrammingTips #FutureOfWork #TechForAll
To view or add a comment, sign in
-
Building a strong foundation in Python basics has been an exciting journey. From understanding variables and data types to working with conditional statements and loops, every concept is helping me think more logically and write cleaner code. What I’ve realized is that mastering the basics is not just about syntax—it’s about developing problem-solving skills and confidence to approach real-world challenges. Consistently practicing small programs and exploring different scenarios has made coding more intuitive and enjoyable. Looking forward to diving deeper and applying these fundamentals to more complex problems 🚀 #day20 #30daysofcodingchallenge #Nxtwave #CCBP #Python #CodingJourney #Learning #Programming #ProblemSolving
To view or add a comment, sign in
-
Most automated feedback in programming tells students what they got wrong. It doesn't tell them what they already got right. It doesn't tell them what to do next. And it doesn't make the connection between the code they're writing and the concepts they're supposed to understand explicit. I've been working on a system that tries to do all three – combining structural assessment, criterion-level feedback and specification mapping into a single automated pipeline built with Python, pytest and GitHub Actions. Every submission generates a report that shows exactly which criteria are met, which aren't, and what to do about it. A student who is halfway there sees what's working alongside what isn't – which changes how that experience feels. The full working example, case study, and code are here: 👉 https://lnkd.in/eQsNmc6u #CSEducation #EdTech #ComputerScience #CodingEducation #ProgrammingEducation #Python #GitHub
To view or add a comment, sign in
-
-
🚀 Day 03 – Learning Control Structures in Python Today was all about understanding control structures — the backbone of decision-making in programming. 🔹 I learned how to use if, elif, and else statements to control the flow of a program 🔹 Explored how programs can make decisions based on conditions 🔹 Practiced writing logic to solve real problems step by step 🔹 Understood how important indentation is in Python 💡 One key takeaway: Control structures allow us to make our programs smart and dynamic, instead of just running line by line. 📌 Practice Task: Built a small program to count even and odd numbers from user input using conditional logic. Every day, things are getting more interesting and challenging — and I’m enjoying the journey! #Python #LearningJourney #100DaysOfCode #Programming #Coding #Beginners #TechSkills
To view or add a comment, sign in
-
-
🚀 Day 18 – Logging Module in Python Today I learned how professionals track errors and events in applications. 🔹 Replaced print() with logging 🔹 Learned logging levels (DEBUG → CRITICAL) 🔹 Stored logs in files with timestamps 💡 Key Learning: In real-world applications, logging is not optional — it’s essential. 📌 Example: logging.error("Something went wrong") Ajay Miryala 10000 Coders #Python #Logging #Debugging #BackendDevelopment #CodingJourney #100DaysOfCode
To view or add a comment, sign in
-
-
🚀 Day 4/100 of Learning Journey Today I explored an important Python concept — Generators and the yield keyword. Generators are special functions that return values one at a time instead of returning everything at once like normal functions. This makes them memory efficient and very useful when working with large datasets. 🔹 What I learned today: What generators are and why they are used How the yield keyword pauses and resumes function execution How to retrieve values using the next() function Creating generator functions to generate sequences like squares of numbers Iterating through generator outputs using loops 💡 Key takeaway: Unlike normal functions that stop after return, generator functions pause at yield and continue from the same place when called again. Every day I’m strengthening my Python fundamentals step by step. Excited to continue this journey! 💻✨ github - https://lnkd.in/gEqWyYXT #Day4 #100DaysOfCode #PythonLearning #Generators #LearnPython #CodingJourney #Programming
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