Day 20 – Python Full Stack Journey 📍 At Global Quest Technologies Today’s session focused on Lambda Functions in Python and their real-time usage with built-in functions. 📌 Topics Covered 🔹 Lambda Functions • Learned anonymous (inline) functions using lambda • Useful for short, one-line operations 🔹 Functions Accepting Lambda Functions • filter() – Filters elements based on condition • map() – Applies function to each element • reduce() – Performs cumulative computation 🔹 Practiced Programs • Implemented multiple examples using filter(), map(), and reduce() • Understood real-time use cases and efficiency 💡 These concepts helped me write more concise and optimized Python code. Step by step, I’m improving my problem-solving skills and coding efficiency. 💻 #Day20 #PythonJourney #FullStackDevelopment #PythonLearning #CodingLife G.R NARENDRA REDDY Global Quest Technologies
Python Lambda Functions and Real-time Usage
More Relevant Posts
-
Python Full Stack Journey – Day 18 to Day 2At Global Quest Technologies 📌 Days 18 & 19 – Functions in Python 🔹 Types of Functions • Standard Function • Function Returning Multiple Values • Default Arguments • Variable Length Arguments 🔹 Parameters • Actual Parameters – Values passed • Formal Parameters – Defined in function 🔹 Variable Length Arguments • *args (Non-keyworded) • **kwargs (Keyworded) 🔹 Function Module & Library • Reusability • Importing modules 🔹 Variables • Local Variables • Global Variables 📌 Day 20 – Lambda Functions 🔹 Lambda Functions • Anonymous, one-line functions 🔹 Functions Using Lambda • filter() – Condition-based filtering • map() – Applies function to elements • reduce() – Performs cumulative operations 🔹 Practice • Implemented real-time examples using all three 📌 Day 21 – Advanced Concepts & OOP 🔹 Function Aliasing • One function assigned to another variable 🔹 Nested Functions • Function inside another function 🔹 Random Module • Generating random values 🔹 Method Overloading • Same method with different parameters 🔹 Object-Oriented Programming (OOP) • Concept based on objects 🔹 Class • Blueprint for creating objects • Contains properties & methods 💡 These days helped me understand functions deeply, optimize code using lambda, and start OOP concepts. Thankyou G.R NARENDRA REDDY Sir and Global Quest Technologies for their continuous support and motivation. #Day18 #Day19 #Day20 #Day21 #PythonJourney #FullStackDevelopment #PythonLearning #CodingLife #GlobalQuestTechnologies
To view or add a comment, sign in
-
-
Day 21 – Python Full Stack Journey 📍 At Global Quest Technologies Today’s session focused on advanced function concepts and introduction to Object-Oriented Programming (OOP) in Python. 📌 Topics Covered 🔹 Function Aliasing • Learned how one function can be assigned to another variable • Multiple references can point to the same function 🔹 Nested Functions • Functions defined inside another function • Helps in better structure and encapsulation 🔹 Generating Random Numbers • Used Python’s random module to generate random values • Useful for simulations and real-time applications 🔹 Method Overloading • Understood concept of using same method name with different parameters • Learned Python handles it differently using default arguments 🔹 Object-Oriented Programming (OOP) • Introduction to OOP concept • Focus on organizing code using objects and classes 🔹 What is Object-Oriented Programming? • A programming paradigm based on objects • Helps in code reusability, modularity, and scalability 🔹 What is a Class? • A blueprint for creating objects • Defines properties (variables) and behaviors (methods) 💡 Today’s learning helped me understand how to structure programs using functions and OOP concepts for better development practices. Step by step, I’m becoming more confident in Python and software development. 💻 #Day21 #PythonJourney #FullStackDevelopment #PythonLearning #CodingLife G.R NARENDRA REDDY Global Quest Technologies
To view or add a comment, sign in
-
-
Today I built a Mini Application using Python Dictionary 📌 Features: ✔️ Store student names and marks ✔️ Display all student records ✔️ Search student marks instantly ✔️ Handle invalid inputs smoothly 💡 Concepts Used: Dictionaries items() for iteration Conditional statements Loops (for, while) User input handling ✨ This small project helped me understand how dictionaries can be used in real-world applications. 📈 Step by step, improving problem-solving skills every day! Global Quest Technologies #Python #100DaysOfCode #CodingJourney #PythonProjects #LearnPython #Programming #Developers #Tech #StudentDeveloper #CodeNewbie #GlobalQuestTechnologies #GQT
To view or add a comment, sign in
-
🚀 Continuing My Python Learning Journey at Global Quest Technologies I’m excited to share the next phase of my Python practice, where I focused on functions, recursion, and advanced data structures. This set of programs helped me deepen my understanding of how Python works beyond the basics. 📌 Key areas I explored: 🔹 Functions: Writing reusable logic for tasks like prime checking, factorial, Fibonacci, string operations 🔹 Recursion: Solving problems like factorial, Fibonacci series, GCD, LCM, string reversal, and more 🔹 Data Structures: Working with tuples, sets, and dictionaries for efficient data handling 🔹 Set Operations: Union, intersection, difference, and subset checks 🔹 Dictionary Operations: Creating, updating, merging, and analyzing data 🔹 Iteration Techniques: Using both for and while loops effectively 🔹 String & Collection Handling: Word count, largest/smallest elements, conversions between data types 💡 This phase strengthened my understanding of problem decomposition, recursion logic, and efficient data handling techniques in Python. 📈 Step by step, building a strong foundation towards advanced Python concepts and real-world applications! #Python #CodingJourney #Programming #Recursion #DataStructures #Learning #PythonDeveloper
To view or add a comment, sign in
-
🚀 Day 14 of My Python Full Stack Development Journey Continuing my training at Global Quest Technologies, Yelahanka. Today’s session focused on Sets in Python and performing various operations on sets, along with solving practical programs. 📌 Topics Covered 🔹 Mathematical Operations on Sets Learned different operations that can be performed on sets: • Union (|) – combines elements from both sets • Intersection (&) – common elements • Difference (-) – elements present in one set but not in another • Symmetric Difference (^) – elements present in either set but not both 🔹 Union vs Intersection Understood the difference: • Union gives all unique elements from both sets • Intersection gives only common elements between sets 🔹 Set Comprehension Learned how to create sets using a concise syntax similar to list comprehension. Today’s session helped me understand how to efficiently work with sets and perform mathematical operations in Python. Step by step, I’m improving my problem-solving skills and gaining confidence in coding. 💻 #Python #FullStackDevelopment #LearningJourney #Programming #Coding G.R NARENDRA REDDY Global Quest Technologies
To view or add a comment, sign in
-
-
📘 Strengthening my Python fundamentals! Worked on core concepts such as data types, arithmetic operations, and logical problem-solving. Global Quest Technologies G.R NARENDRA REDDY ⭐ Consistency is the key to mastering programming 💡 #PythonDeveloper #CodingLife #100DaysOfCode #SkillDevelopment
To view or add a comment, sign in
-
Day 24 – Python Full Stack Development Journey 📍 At Global Quest Technologies Today’s session focused on advanced class concepts in Python, including variables, methods, and structured programming practices. 📌 Topics Covered 🔹 Static Variables in Python • Learned different places where static variables can be declared • Accessed using both class name and object • Useful for sharing common data across all objects 🔹 Types of Methods in Python • Instance Methods • Class Methods • Static Methods 🔹 Setter and Getter Methods • Used to set and access values of variables • Helps in data encapsulation and control 🔹 Inner Classes • Class defined inside another class • Used to logically group related classes 🔹 Practical Programs • Declared and accessed static variables in different ways • Implemented setter and getter methods • Demonstrated instance, class, and static methods • Created inner classes and accessed their members 💡 Today’s learning helped me understand how to organize code efficiently using classes, methods, and variables in Python. Step by step, I’m building strong OOP concepts and improving my coding skills. 💻 #Day24 #PythonJourney #FullStackDevelopment #PythonLearning #OOP #CodingLife #GQT #SoftwareDevelopment #Softwareindustry G.R NARENDRA REDDY Global Quest Technologies
To view or add a comment, sign in
-
-
Python reduces development complexity, accelerates deployment, and ensures long-term scalability for all your projects. 🚀 Start building: https://lnkd.in/d7NCYmVh #pythondev #softwareengineering #scalableApps #itsolutions #tvlitsolutions
To view or add a comment, sign in
-
-
Day 27|#60Daysplacementsprintchallenge In Python, a function can send a value back to the place where it was called using the return keyword. This returned value is known as the return type. It allows the result of a function to be stored in a variable and reused in other parts of the program. Dhee Coding Lab Prodhee Technologies
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