🚀 Day 03 — Python Learning Journey Today’s learning was all about Python Strings — how Python works with text and how powerful simple text operations can be. Thanku you Saumya Singh ✅ Learned that strings are immutable (cannot be changed after creation) ✅ Understood indexing and slicing to access specific parts of text ✅ Explored string methods to modify and analyze data easily ✅ Practiced f-strings for clean and readable formatting ✅ Learned escape sequences for quotes, tabs, and new lines Small concepts, but very important for writing clean and readable programs. Step by step, consistency is building confidence in coding. 💻✨ #Python #LearningJourney #Coding #PythonBasics #DeveloperJourney #TechCommunity #Developers #OpenToLearn #BuildInPublic #CFBR #PythonLearning #LearnPython #PythonDeveloper #CodingJourney #ProgrammingLife #CodeNewbie
Python Strings: Immutable, Indexing, and Formatting
More Relevant Posts
-
📘 Python Learning Series – Understanding Dictionaries In this video, we explain one of the most important data types in Python — Dictionary. We cover: ✔️ What a dictionary is ✔️ How to create a dictionary ✔️ How to access values using keys ✔️ How to check the data type ✔️ Basic operations on dictionaries Dictionaries are extremely powerful because they store data in key–value pairs, making data handling more structured and efficient. As part of our Python learning journey, we are focusing on building strong fundamentals before moving toward advanced concepts like AI automation. If you’re learning Python, this video will help you clearly understand dictionaries in a simple and practical way. #Python #Programming #CodingJourney #DataStructures #Learning
To view or add a comment, sign in
-
🚀 Learn Python – Sets If you want to learn how to handle unordered, unique collections of data, mastering Sets in Python is essential. They are the ultimate tool for automatic duplicate removal. I’ve created a structured learning section on my website that explains sets step-by-step with practical examples. 📚 Explore the tutorial: https://lnkd.in/g7pykaF9 🔹 What you will learn • Creating sets with curly braces {} and the set() function • Automatic duplicate removal for data cleaning • Understanding unordered and unindexed collections • Making empty sets correctly (set() vs {}) • Use cases: Mathematical operations and unique value filtering This resource is designed to help developers learn Python with practical examples and structured lessons. Happy Learning! 🚀 #Python #Coding #DataScience #LearnPython #Programming #PythonBasics
To view or add a comment, sign in
-
I spent weeks compiling my Python learning journey into one place. Covers everything in order: What is Python , Variables ,Data Types, Loops ,Functions ,OOP, Decorators ,Generators,Regex and much more. Drop a "Python" in the comments and I will send you the complete PDF. If you find it helpful, share it with someone who's starting their coding journey. #Python #Programming #Learning #PythonNotes #CodingJourney Krishan Narula AI ML, Gen AI
To view or add a comment, sign in
-
🚀 Python Learning Journey – Day 11 Today, I learned about Dictionaries in Python and how they store data in key–value pairs. Here’s what I practiced: ✅ Creating dictionaries ✅ Accessing values using keys ✅ Adding and updating elements ✅ Removing elements ✅ Dictionary methods – keys(), values(), items(), get(), update(), pop(), clear() ✅ Using len() with dictionaries Dictionaries helped me understand how to organize data more efficiently. Learning every day and building strong Python basics 💪 Consistency is paying off! #Python #LearningJourney #Beginner #Day11 #Dictionaries #Coding #KeepLearning
To view or add a comment, sign in
-
-
🚀Day 4/30 – Python Learning Challenge 🐍 Today I explored Operators in Python — the symbols that allow us to perform operations on variables and values. Python provides several types of operators that make coding more powerful and efficient. 🔹 Arithmetic Operators – Used for mathematical calculations + - * / % // ** 🔹 Comparison Operators – Used to compare two values == != > < >= <= 🔹 Logical Operators – Used to combine conditional statements and or not 🔹 Assignment Operators – Used to assign values to variables = += -= *= /= 📌 Key Learning: Operators are the backbone of writing logic in Python. Mastering them helps in building conditions, calculations, and decision-making in programs. Learning something new every day and staying consistent with my 30-Day Python Challenge. 🚀 #Python #PythonLearning #CodingJourney #LearnInPublic #DataScience #Programming #100DaysOfCode
To view or add a comment, sign in
-
-
🚀 Python Learning Journey – Revision Day Today, I revised my first 3 days of Python topics to strengthen my basics. Here’s what I revised: ✅ Introduction to Python ✅ Variables and basic programs ✅ Arithmetic operations ✅ String concatenation and slicing ✅ Conditional statements (if, elif, else) Revision really helped me understand concepts more clearly. Practice + consistency = progress. 💪 #Python #LearningJourney #Beginner #RevisionDay #Coding #KeepLearning
To view or add a comment, sign in
-
Python practice 🚀 Day 2 of My Python Learning Journey: Today I explored Generator Expressions in Python and how they differ from list comprehensions. Example: numbers = [1,2,3,4] g = (x*x for x in numbers) print(list(g)) print(list(g)) Output: [1, 4, 9, 16] Output: [] Generator expressions create values one at a time unlike list unless you explicitly typecast it as list while printing, making them memory efficient. once a generator is fully consumed, it becomes exhausted, which is why the second print returns an empty list. 💡 Insight here is that generators are very useful when working with large datasets or streaming data, where storing everything in memory is not practical. #Python #Learning #DataScience
To view or add a comment, sign in
-
🚀 Day-15 of My Python Learning Journey In today’s session, I learned about Dictionaries in Python. 🔑 concepts I explored today: 1. Understanding Dictionary data structure 2. Working with Key–Value pairs 3. Creating dictionaries with values like name, age, etc. 4. Accessing and extracting data from dictionaries 5. Updating, replacing, and converting values 6. Returning specific data from dictionary elements It’s amazing to see how Python allows us to organize and manage data efficiently using dictionaries. A big thank you to Satish Dhawale Sir for providing such a great learning opportunity and guidance throughout this journey. Looking forward to learning more advanced Python concepts in the coming days. 💻🐍 #Python #PythonLearning #CodingJourney #Programming #DataStructures #LearningEveryday #CareerGrowth
To view or add a comment, sign in
-
🗑Data Cleaning for Machine Learning — Python Made Simple Data cleaning is one of the most important steps in any Machine Learning workflow. Before models can learn, your data needs to be consistent, structured, and free of noise, and Python gives you all the tools to make that happen efficiently. This useful and intuitive guide walks through the essential techniques for cleaning data with Python. From handling missing values and fixing inconsistent formats to encoding categories and scaling features, helping you prepare high‑quality datasets that lead to better models and better insights. #Python #MachineLearning #DataCleaning #DataScience #Analytics
To view or add a comment, sign in
-
🚀 Mastering Python Lists – The Foundation of Python Programming Python Lists are one of the most powerful and flexible data structures in Python. Understanding them deeply is essential for writing efficient and clean code. In this visual guide, I’ve covered: ✅ List Syntax & Structure ✅ Properties (Ordered, Mutable, Allows Duplicates) ✅ Indexing & Negative Indexing ✅ Slicing Techniques ✅ Accessing Elements ✅ Common Methods like append(), remove(), sort() ✅ Iterating Through Lists ✅ Practical Examples Lists allow us to store multiple values in a single variable, manipulate data easily, and build dynamic applications efficiently. Whether you're a beginner or strengthening your fundamentals, mastering lists is a crucial step in your Python journey. 💡 Strong fundamentals build strong developers. #Python #Programming #Coding #DataStructures #SoftwareDevelopment #LearnPython #TechSkills #DeveloperJourney #Odoo #DataScience #AI #ML
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