🚀 Day 8/100 | #100DaysOfCode | Python String Power 🐍✨ Learning Python step by step, and today was all about understanding strings more deeply 🔍 Here’s what I practiced today 👇 🔹 String Indexing Accessing characters using positions — helped me understand how data is stored in strings. 🔹 swapcase() Turns lowercase into uppercase and vice versa — simple but very useful! 🔹 count() To check how many times a character or word appears in a string. 🔹 find() & index() Both help in finding positions of characters, but today I learned the key difference between them — great for debugging and validations. 🔹 split() & join() Breaking strings into words and joining them back — super important for real-world text processing. Small concepts, but they build a strong foundation for bigger programs 💯 Trying to stay consistent and improve a little every single day 🚀 Learning in public, learning with purpose 💻✨ #Python #100DaysOfCode #LearningPython #CodingJourney #DeveloperInMaking #TechSkills #Consistency #DailyLearning #FromBasicsToBuild
Python String Methods and Indexing Basics
More Relevant Posts
-
🌙 Day 10/100 | #100DaysOfCode 🚀 Today I explored List Operations in Python — and honestly, lists are SUPER powerful! 🐍✨ Here’s what I learned today 👇 🔹 append() – Add an item at the end of the list 🔹 insert() – Add an item at a specific position 🔹 remove() – Remove an item by value 🔹 pop() – Remove an item by index 🔹 sort() – Arrange items in ascending order 🔹 reverse() – Reverse the whole list 🔹 len() – Find total number of items in the list Small operations, but they make data handling so much easier and cleaner 💻📊 Step by step, building strong basics in Python 💪 Consistency over perfection — always! 👉 Tomorrow, more learning, more growth 🚀 #Python #100DaysOfCode #LearningInPublic #PythonLists #CodingJourney #DeveloperLife #DailyLearning #TechSkills #Consistency
To view or add a comment, sign in
-
🌙 Day 14/100 | #100DaysOfCode 🚀 Continuing my Python learning journey — one concept at a time 🐍💻 📌 Today’s Topic: Type of Conversion in Python Today I learned how Python converts one data type into another, which is super helpful while working with user input and calculations. 🔹 Implicit Conversion Python automatically converts one data type to another. Example: int → float during calculations. 🔹 Explicit Conversion (Type Casting) We manually convert data types using functions like: int(), float(), str(), list() etc. This helped me understand how to avoid errors and handle data properly in real programs. Slow progress, but strong foundation 💪 Learning daily and trusting the process ✨ 👉 Tomorrow again, with a new concept! #Python #LearningPython #CodingJourney #DeveloperInMaking #Consistency #DailyLearning #TechSkills #FromBasicsToAdvanced
To view or add a comment, sign in
-
🚀 Day 11/100 | #100DaysOfCode 🐍 Learning Python Step by Step! Today I learned about Tuples in Python and practiced questions from all the topics I’ve covered till now. ✅ 🔹 Tuples are ordered collections just like lists, but they are immutable (their values cannot be changed). 🔹 Useful when we want to store data that should not be modified. 🔹 Learned and practiced: • Creating tuples • Accessing elements using index • count() and index() methods • Tuple unpacking Along with tuples, I also practiced questions on: ✔ Variables & Data Types ✔ Input & Output ✔ Operators ✔ Strings and String Functions ✔ Lists and List Operations Focusing on building strong basics before moving to advanced topics. 💪 Consistency > Speed. One concept at a time. 🚀 👉 Excited to learn more Python concepts in the coming days! #Python #100DaysOfCode #LearningInPublic #PythonBeginner #CodingJourney #DailyLearning #BuildInPublic #TechSkills #FutureDeveloper 💻🔥
To view or add a comment, sign in
-
Learning Python one concept at a time 🐍 Python Basics — Day 4 🐍 📌 Concept :Numbers & Operators where logic starts making sense 🔢 Addition, subtraction, multiplication… Python handles numbers just like real life. The key lesson beginners miss 👇 Numbers do math. Text does not. Practicing with operators helps you think in code, not just write it. Sharing simple explanations + practice questions to learn by doing ✍️ 💬 Comment “DONE” after solved the practice questions If you’re learning Python step by step, let’s connect 🤝 #Python #Learning #Beginners #PythonBasics #Upskilling #TechLearning #CareerGrowth #AI #AILearning #developer #pythondeveloper
To view or add a comment, sign in
-
Today I learned about Lambda Functions in Python 🐍 A lambda function is a small, anonymous function written in a single line using the lambda keyword. It’s mainly used for: ✅ Short and simple operations ✅ Writing compact code ✅ Using inside functions like map(), filter(), and sorted() Example idea: Instead of writing a full function to square a number, we can do it in one line with a lambda function. Less code. Same logic. Cleaner style. Understanding these small tools really helps in writing more Pythonic and efficient code. Learning one concept every day 🚀 #Python #DataScience #LearningInPublic #Programming #100DaysOfCode #CareerSwitch
To view or add a comment, sign in
-
-
🚀 Day 27/100 | #100DaysOfCode — Python Learning Journey 🐍 Today was all about Input, Output & File Handling in Python — and honestly, this felt like a big step toward real-world programs 💻✨ Here’s what I learned today 👇 🔹 Input & Output How to take user input using input() and display results using print() — making programs more interactive. 🔹 Opening & Closing Files Learned how to open files using different modes like: 'r' → read 'w' → write 'a' → append And why closing files is important to save memory and avoid data loss. 🔹 Adding Data to Another File Practiced writing and appending data into files — now I can store program output instead of just printing it on screen. This really made me realize how programs actually store and manage data behind the scenes 🧠⚙️ Still learning, still improving — one day, one concept at a time 💪 👉 Consistency > Motivation #Python #FileHandling #InputOutput #100DaysOfCode #LearningInPublic #CodingJourney #FutureDeveloper
To view or add a comment, sign in
-
At first, I skipped Iterator, Generator, and Decorator while revising Python. I thought they were confusing and not that important. But during revision, when I properly understood them, everything became clear — what they are, why they exist, and where Python actually uses them. ✨ Quick learning summary : 🔹 Iterator Used to go through data one value at a time. Example: reading large files, database records. 🔹 Generator An easier and smarter way to create iterators using yield. Used when working with large data, streams, or infinite sequences. 🔹 Decorator Used to add extra behavior to a function without changing its code. Commonly used for logging, authentication, caching . 👉 After understanding these concepts, Python feels more powerful and logical, not complex. 📌 Lesson learned: Never skip a topic just because it looks difficult. Once you understand the why, the how becomes easy. #Python #LearningJourney #CorePython #Iterator #Generator #Decorator #ProgrammingBasics #Revision #InnomaticsResearchLabs #AdvancedPython #Syntax #Example
To view or add a comment, sign in
-
-
🐍 5 Python Libraries Every Developer Should Learn in 2026 Stop writing everything from scratch. These libraries will 10x your productivity: 1️⃣ FastAPI → Build APIs in minutes, not hours 2️⃣ Pandas → Data manipulation made ridiculously easy 3️⃣ Pydantic → Data validation that actually makes sense 4️⃣ LangChain → Build AI apps without reinventing the wheel 5️⃣ Rich → Beautiful terminal output (yes, it matters!) Which one are you learning next? 👇 Save this for later 🔖 #TechTuesday #Python #PythonDeveloper #CodingTips #AI #MachineLearning #LearnToCode #AdvikaITSolutions #IndoreIT
To view or add a comment, sign in
-
Most Python learning resources focus on big concepts - loops, functions, APIs, frameworks. But what truly elevates your code isn’t the flashy stuff. It’s the small, subtle details that most people overlook. In my latest article, I highlight a handful of those tiny Python habits that quietly make you better at writing code: • understanding how division and operator precedence behave • using string formatting confidently • noticing when a simple underscore (_) carries meaning • being intentional about small language behaviors that trip others up These aren’t complicated tricks - they’re fundamentals that keep bugs away and make your code easier for others (and future you) to read. If you work with Python regularly and want to sharpen the quality of your code, I think you’ll find it useful. Link to the full article in the comments 👇 #Python #CleanCode #Programming #DataAnalytics #DataScience #DataEngineering
To view or add a comment, sign in
-
-
🚀 Post #351 — Learning Python the Right Way Most people can write this in Python: a = 10 But when I asked where does a actually live in memory? Silence. That’s the gap between using Python and understanding Python. 🧠 In Python, variables don’t store values. They store references to objects. a = 10 print(id(a)) 🔍 id() gives you the memory address (identity) of the object a points to. Why this matters in real systems 👇 • Explains immutability (int, str, tuple) • Prevents bugs in shared references & mutability • Helps debug weird behavior in lists, dicts, function calls • Builds a strong base for performance + memory reasoning Example that changes how you think: a = 10 b = 10 print(id(a) == id(b)) # True (integer caching) Python is doing memory optimization, not magic. If you skip internals like this, you’ll write code — but you won’t reason about it. Curiosity at the memory level is what separates script writers from engineers. 🐍 #Python #SoftwareEngineering #BackendDevelopment #LearningInPublic #ComputerScience
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