🚀 Day 8 of my Python Full Stack Journey Continuing my training at Global Quest Technologies, today’s session focused on string operations and formatting in Python, which play a key role in handling and processing text data. Key learnings: 🔹 String Slicing • Explored how to extract parts of a string using the slicing operator "[:]" • Practiced using start index, end index, and step values • Gained clarity on retrieving specific portions using different index combinations 🔹 String Methods Worked with important built-in methods such as: • "strip()" • "split()" • "join()" • "replace()" • "upper()" and "lower()" • "swapcase()" • "title()" and "capitalize()" • "startswith()" and "endswith()" 🔹 String Formatting • Learned to use curly braces "{}" for formatting strings, making outputs cleaner and more dynamic This session helped me strengthen my understanding of string handling and improved my ability to write more structured Python programs. 🙏 Thankful to G.R NARENDRA REDDY Sir and Global Quest Technologies for their continuous support and guidance. #Python #FullStack #LearningJourney #Programming #Coding
Python String Operations and Formatting at Global Quest Technologies
More Relevant Posts
-
Day 9 My Python Full Stack Journey Continuing my learning at Global Quest Technologies, today’s session focused on the List data structure in Python, which is used to store multiple items in a single variable. Topics covered: 🔹 Introduction to Lists • Lists are used to represent multiple objects as a single entity • Learned how to create lists using [] (list literals) and the list() function 🔹 Key Features of Lists • Supports heterogeneous elements (different data types) • Duplicates are allowed • Order of insertion is preserved • Supports both positive and negative indexing • Lists are mutable (can be modified after creation) 🔹 Accessing List Elements • Accessed elements using indexing • Extracted portions using the slice operator 🔹 Traversing Lists • Learned how to iterate through list elements using loops • Practiced examples for better understanding 🔹 Important List Methods • "len()" • "count()" • "index()" • "append()" • "insert()" • "extend()" This session helped me understand how to work with collections of data efficiently and perform various operations on lists. #Python #FullStack #LearningJourney #lists
To view or add a comment, sign in
-
-
🚀 Access Modifiers in Python: Naming Conventions for Encapsulation (Oop Concepts) Python doesn't have explicit access modifiers like 'private' or 'protected'. Instead, it relies on naming conventions to indicate the intended visibility of class members. Attributes and methods with a single leading underscore ('_') are considered 'protected' (meant for internal use within the class and subclasses), while those with a double leading underscore ('__') are name-mangled to make them harder to access directly from outside the class. However, these are conventions, not enforced restrictions. #oopconcepts #programming #coding #tech #learning #professional #career #development
To view or add a comment, sign in
-
-
🚀 Python Basics to Advanced Learning Series – Day 8 I’m continuing my Python learning journey at Global Quest Technologies, and today’s session helped me go deeper into how lists work internally. What I learned today: • Revised and practiced all built-in functions used with lists • Understood the id() function and how it shows the memory location of an object • Learned about aliasing in lists (when two variables refer to the same list) • Understood how changes in one variable affect the other due to shared reference • Learned cloning of lists to create a separate copy • Two ways to clone a list: Using slice operator ([:]) Using copy() method This session helped me clearly understand the difference between reference (aliasing) and independent copies (cloning). It also improved my understanding of how Python manages data in memory. Practicing these concepts gave me more clarity on writing efficient and bug-free code. I’m learning step by step at Global Quest Technologies, and every day I’m gaining better understanding and confidence in Python. Excited to continue this journey 🚀 #Python #PythonProgramming #LearningJourney #Coding #DataStructures #Lists #ProblemSolving #SoftwareDevelopment #TechLearning #Developers #GlobalQuestTechnologies #GQT
To view or add a comment, sign in
-
-
Day 2 – Python Fundamentals Today I learned the core concepts of Python including identifiers, keywords, data types, and operators. Identifiers are used to name variables, keywords are reserved words in Python, data types define the type of data, and operators help perform operations. These basics are essential for writing efficient and clean Python code. Looking forward to building more concepts step by step! 💻✨ Global Quest Technologies #Python #FullStackDevelopment #Programming #LearningJourney #Coding #Tech
To view or add a comment, sign in
-
-
🚀 Day 9 of my Python Full Stack Journey Continuing my learning at Global Quest Technologies, today’s session focused on the List data structure in Python, which is used to store multiple items in a single variable. Topics covered: 🔹 Introduction to Lists • Lists are used to represent multiple objects as a single entity • Learned how to create lists using [] (list literals) and the list() function 🔹 Key Features of Lists • Supports heterogeneous elements (different data types) • Duplicates are allowed • Order of insertion is preserved • Supports both positive and negative indexing • Lists are mutable (can be modified after creation) 🔹 Accessing List Elements • Accessed elements using indexing • Extracted portions using the slice operator 🔹 Traversing Lists • Learned how to iterate through list elements using loops • Practiced examples for better understanding 🔹 Important List Methods • "len()" • "count()" • "index()" • "append()" • "insert()" • "extend()" This session helped me understand how to work with collections of data efficiently and perform various operations on lists. 🙏 Thankful to G.R NARENDRA REDDY Sir and Global Quest Technologies for their continuous support and guidance. #Python #FullStack #LearningJourney #Programming #Coding
To view or add a comment, sign in
-
-
Day 7 of my Python Full Stack Training at Global Quest Technologies As part of our continuous Python learning journey, today’s session focused on understanding Loops and Strings in Python in detail. We learned about different types of loops, including: • For loop – used to iterate over sequences like lists, tuples, and strings • While loop – executes a block of code as long as a condition is true • Nested loops – loops inside another loop We explored key concepts of loops: • Using range() function for iteration • Iterating through sequences like strings and lists • Controlling loops using break, continue, and pass • Writing simple programs using loops We also learned about Strings in Python: • Strings as a sequence of characters • String indexing and slicing • String operations and concatenation • Common string methods • Iterating through strings using loops I would like to thank Swamy Sir, our Python Trainer, for his excellent teaching and continuous support. Heartfelt thanks to CEO Narendra Reddy Sir for giving us this wonderful opportunity to learn and grow at Global Quest Technologies. G.R NARENDRA REDDY #Python #FullStack #PythonTraining #Loops #Strings #Programming #GlobalQuestTechnologies #LearningJourney #Coding #Bangalore
To view or add a comment, sign in
-
-
A simple rule-based Python chatbot demonstrating basic flow control, loops, and user input handling. Ideal for beginners learning if-elif logic. 🟢github link⬇️ https://lnkd.in/gXJyzYRW #codeAlpha CodeAlpha #PythonProgramming #Basicchatbot
To view or add a comment, sign in
-
Currently reviewing Python fundamentals using: I’ve been using https://coddy.tech/ to review and strengthen my Python fundamentals, and it has been a great resource for hands-on practice. The platform offers interactive exercises that help reinforce key concepts through practical application, which has been very helpful in my learning process. Another interesting aspect is that it also provides certificates, which can be a good way to track progress and stay consistent while learning. Revisiting fundamentals has been an important step in improving how I write and structure my code. #Python #BackendDevelopment #Learning #SoftwareEngineering #Coding
To view or add a comment, sign in
-
-
📘 Learning Update – Python Fundamentals Today I continued my Python practice and explored some important concepts: 🔹 List, Set & Dictionary Comprehensions Practiced writing clean and efficient code using comprehensions Improved understanding of concise data handling in Python 🔹 Sets & Frozen Sets Learned about uniqueness in sets Explored immutability with frozenset and where it can be useful 🔹 Argparse Module Learned how to handle command-line arguments in Python Built simple scripts that accept user input from the terminal Every concept I practice brings me one step closer to building a strong foundation for AI and Machine Learning. 🔗 GitHub Repository: https://lnkd.in/dH9c5ExV #Python #LearningJourney #Consistency #AIJourney #Coding #StudentLife
To view or add a comment, sign in
-
Day 8 My Python Full Stack Training at Global Quest Technologies As part of my continuous learning journey, today’s session focused on String Methods and String Operations in Python. We learned how to manipulate strings using different built-in methods and slicing techniques. Topics covered today: • strip() method – removes spaces from left and right side of string • split() method – splits the string into parts • join() method – combines list elements into string • replace() method – replaces old value with new value • upper() and lower() – convert string case • swapcase() – converts lowercase to uppercase and vice versa • title() – converts first letter of every word into capital • capitalize() – converts first letter of first word into capital • startswith() and endswith() – checks starting and ending characters • String formatting using {} and format() method • Slice operator [ : ] – used to extract part of string • Index, start, end, and step values in slicing Thanks for our CEO G.R NARENDRA REDDY sir and Global Quest Technologies #Python #FullStack #PythonTraining #GlobalQuestTechnologies #StringMethods
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