🚀 Day 5 of My Python Full Stack Development Journey Continuing my training at Global Quest Technologies, Yelahanka. Today’s session focused on some of the core building blocks of Python programming. 📌 Concepts Covered 🔹 Identifiers Identifiers are the names given to variables, functions, or other objects in Python. They help us identify and use data in a program. Example: name = "Saipavan" age = 21 🔹 Keywords Keywords are reserved words in Python that have special meanings and cannot be used as identifiers. Examples: if, else, while, for, True, False 🔹 Data Types Python supports different types of data such as: int (integer) float (decimal) str (string) bool (boolean) list, tuple, dictionary Example: x = 10 # int y = 3.5 # float name = "Sai" # string 🔹 Type Casting Type casting is the process of converting one data type into another. Example: x = "10" y = int(x) # converting string to integer print(y) Today’s concepts are fundamental because they form the base for writing any Python program. Learning step by step and building a strong foundation. Looking forward to what’s next. 💻 #Python #FullStackDevelopment #LearningJourney #Global Quest Technologies #Programming #G.R NARENDRA REDDY #Global Quest Technologies
Learning Python Fundamentals at Global Quest Technologies
More Relevant Posts
-
Day 6 of My Python Full Stack Development Journey Continuing my training at Global Quest Technologies, Yelahanka. Today’s session focused on key Python concepts that help in writing logical and interactive programs. 📌 Topics Covered 🔹 Operators Learned about different types of operators in Python, including arithmetic, relational, logical, and assignment operators. These are essential for performing calculations, comparing values, and forming conditions in programs. 🔹 User Input Understood how to take input from users using the input() function, which makes programs interactive and user-friendly. 🔹 eval() Function Explored how the eval() function evaluates user input as a Python expression, allowing dynamic execution of inputs. 🔹 Types of if Conditions Learned decision-making statements such as if, if-else, and if-elif-else, which help programs respond based on different conditions. 🔹 Types of range() Function Studied different ways to use the range() function: • range(stop) • range(start, stop) • range(start, stop, step) Today’s concepts helped me understand how to make Python programs more logical and interactive. Step by step, I’m building confidence in Python and enjoying the learning journey. 💻 #Python #FullStackDevelopment #Learning #Programming #CodingJourney G.R NARENDRA REDDY Global Quest Technologies
To view or add a comment, sign in
-
-
🚀 Day 6 of My Python Full Stack Development Journey Continuing my training at Global Quest Technologies, Yelahanka. Today’s session focused on important Python concepts that help in writing logical and interactive programs. 📌 Concepts Covered 🔹 Operators Learned about different types of operators in Python such as arithmetic operators, relational operators, logical operators, and assignment operators. These operators are used to perform calculations, compare values, and build conditions in programs. 🔹 User Input Understood how to take input from the user using the input() function, which makes programs interactive. 🔹 eval() Function Learned how the eval() function can be used to evaluate the input entered by the user as a Python expression. 🔹 Types of if Conditions Explored decision-making statements in Python, including if, if-else, and if-elif-else. These conditions help programs make decisions based on different situations. 🔹 Types of range() Function Learned different ways of using the range() function: range(stop) range(start, stop) range(start, stop, step) Today’s concepts helped me understand how to make Python programs more interactive and logical. Step by step, I’m building confidence in Python and enjoying the learning journey. 💻 #Python #FullStackDevelopment #LearningJourney GlobalGlobalGlobal Quest Technologies #Programming G.R NARENDRA REDDY Global Quest Technologies
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 Development Journey Continuing my training at Global Quest Technologies, Yelahanka. Today’s session focused on loops and strings in Python, which are very important for writing efficient and structured programs. 📌 Concepts Covered 🔹 Loops in Python Learned about the two main types of loops in Python: for loop – used when we want to repeat a block of code for a specific number of times or over a sequence while loop – used when we want to repeat a block of code as long as a condition is true We also practiced examples using both for and while loops. 🔹 Strings Understood that a string is a sequence of characters used to store text in Python. 🔹 Multiline String Literals Learned how to write strings in multiple lines using triple quotes, which is useful for storing long text. 🔹 Accessing Individual Characters Using Index Explored how to access each character in a string using indexing. Example: In "Python" s[0] gives P s[1] gives y 🔹 Slice Operator Learned how to extract a part of a string using the slice operator. Example: For "Python" s[0:3] gives Pyt s[2:6] gives thon Today’s session helped me understand how loops reduce repetitive work and how strings can be accessed and manipulated in Python. Step by step, I’m building a stronger foundation in Python and moving forward in this learning journey. 💻 #Python #FullStackDevelopment #LearningJourney Global Quest Technologies #Programming G.R NARENDRA REDDY Global Quest Technologies
To view or add a comment, sign in
-
-
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
-
-
Day 10 My Python Full Stack Training at Global Quest Technologies Continuing my Python learning journey, today’s session focused on deeper concepts of Python Lists and how memory works behind the scenes. Today’s session included: • Understanding identity (id) of objects in Python • Learning the concept of Cloning of Lists (creating an exact copy of a list) • Exploring methods to clone lists: Using Slice Operator ([:]) Using copy() method • Understanding Aliasing of Lists (assigning another reference to the same list) • Difference between Cloning vs Aliasing • Hands-on practice with list operations and outputs 💡 Key Takeaway: Cloning creates a new object with a different identity, whereas aliasing refers to the same object in memory. Understanding this helps avoid unexpected changes in data while coding. This session gave me a clear understanding of how Python handles data internally and improved my confidence in working with lists. Looking forward to learning more advanced concepts and improving my coding skills Thanks our CEO G.R NARENDRA REDDY sir and Global Quest Technologies Python #LearningJourney #DataStructures #PythonLists
To view or add a comment, sign in
-
-
🚀 Day 9 of My Python Full Stack Development Journey Continuing my training at Global Quest Technologies, Yelahanka. Today’s session focused on the list data type in Python, which is one of the most commonly used data structures. 📌 Concepts Covered 🔹 List Data Type A list is a collection of elements that can store multiple values in a single variable. Lists are ordered and mutable, which means we can modify them. 🔹 Accessing Elements using Slice Operator Learned how to access a range of elements from a list using slicing. 🔹 Traversing List Elements Understood how to iterate through list elements using loops. 🔹 Built-in Functions and Methods in List len() → returns the number of elements in the list count() → returns the number of occurrences of a specific element index() → returns the position of a specific element append() → adds an element at the end insert() → adds an element at a specific position extend() → adds multiple elements to the list Today’s session helped me understand how to store, access, and manipulate multiple values efficiently using lists. Building my Python fundamentals step by step. 💻 #Python #FullStackDevelopment #LearningJourney Global Quest Technologies G.R NARENDRA REDDY #Programming
To view or add a comment, sign in
-
-
Day 6 My Python Full Stack Training at Global Quest Technologies Continuing my Python learning journey, today’s session was focused on understanding operators in Python and how they are used to perform different types of operations in programs. Today’s session included: • Introduction to different types of operators in Python • Arithmetic operators (+, -, *, /, %, //, **) • Relational (comparison) operators (==, !=, >, <, >=, <=) • Logical operators (and, or, not) • Bitwise operators (&, |, ^, <<, >>) • Assignment operators (=, +=, -=, *=, etc.) • Identity operators (is, is not) • Membership operators (in, not in) • Understanding operator behavior with examples • Basic use of eval() function for evaluating expressions This session helped me understand how Python handles operations and how different operators are used in real-time programming scenarios. Looking forward to applying these concepts in coding practice and improving my problem-solving skills in Python. Thanks for our CEO G.R NARENDRA REDDY sir and Global Quest Technologies #Python #PythonOperators
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
-
-
🚀 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
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