#Day 6–7 of My Python Journey | #100DaysOfCode Diving deeper into Python fundamentals and exploring the power of strings 1. Practiced string operations and concatenation 2. Learned indexing (accessing characters using position) 3. Used loops (for loop) to iterate through strings 4. Explored string slicing to extract parts of a string 5. Understood how to use negative indexing & length functions One cool realization - Strings are more powerful than they look — from simple text to data manipulation, everything starts here! Step by step, building strong fundamentals for future projects #Python #100DaysOfCode #CodingJourney #LearnToCode #Programming #DeveloperJourney #TechSkills
Mastering Python Fundamentals with Strings
More Relevant Posts
-
Loops in Python look simple. 🐍 💻 But they save you hours. Instead of repeating tasks, you let the code do it for you. I made a short (10-page) tutorial focused on loops - simple and practical. Comment “loops” if you want it 👇 #Python #Programming #CodingBasics #LearnPython #Automation #AI #TechSkills #FreelancerLife
To view or add a comment, sign in
-
🚀 Day 2 — Python Journey Continuing with Python, today I focused on integer operations. 📌 What I learned: - Integer declaration - Addition, subtraction, multiplication - Division and modulus (remainder) - Power operation - Operator precedence (which operation runs first) 💡 What stood out: Understanding operator precedence is really important — the same expression can give different results if you don’t know the order of execution. Also, modulus (%) is more useful than it looks (especially for problems and logic building). Trying to stay consistent and build strong basics step by step. #Day2 #Python #CodingJourney #Consistency #LearnInPublic
To view or add a comment, sign in
-
-
Effortless string iteration for Python beginners is now possible Discover the most efficient way to iterate over strings in Python Get to know the different techniques to manipulate characters Python Strings Read the full article 👉 https://lnkd.in/dnaxNEu7 #EnterpriseApplication #SoftwareDevelopment #DataTypes #TechLab Code. Learn. Build. — TechLab by Neeraj
To view or add a comment, sign in
-
Learn Python Basics Through a Real-World Calculator Project Discover how to build a working calculator in Python with interactive user interface. Learn how to handle user input and feedback control. Read the full article 👉 https://lnkd.in/dnrY9FZ3 #LearnPython #ITJobsForFreshers #CalculatorProject #PythonProgramming #SoftwareEngineering #TechLab Code. Learn. Build. — TechLab by Neeraj
To view or add a comment, sign in
-
🔁 For Loop vs While Loop in Python — Simple Difference Understanding loops is one of the first steps in mastering Python. Here's a quick comparison: ✅ For Loop Used when the number of iterations is known. Example: Iterating through a list, string, or range. for i in range(5): print(i) ✅ While Loop Used when the number of iterations is unknown and depends on a condition. i = 0 while i < 5: print(i) i += 1 📌 Key Difference for loop → iterate over sequence while loop → run until condition becomes False 💡 Tip: Use for loops for cleaner and readable code when working with collections. Use while loops when waiting for a condition (like user input). #Python #Coding #Programming #PythonBasics #LearnPython
To view or add a comment, sign in
-
Learn how to access, unpack, loop, join, and more with tuples in Python — a quick guide to mastering this essential data type! 🎥 Watch here: https://lnkd.in/dpYuJNUp #Python #Coding #DataStructures #ProgrammingTips
Python Tutorial Part 4 | Tuples: Access, Update, Unpack , Loop, Join & More
https://www.youtube.com/
To view or add a comment, sign in
-
Today’s focus was on string manipulation in Python, which is an essential part of handling real-world data. I practiced different operations to understand how strings can be processed and transformed efficiently. Here’s what I worked on: • Extracting characters at even indices • Replacing spaces with underscores • Checking if a string contains only digits • Reversing a string using slicing • Capitalizing the first letter of each word These exercises helped me improve my understanding of string handling, indexing, and built-in Python methods. Building consistency and strengthening fundamentals step by step. Big thanks to VASU KUMAR PALANI and PythonLife for the continuous guidance and support. #Python #CodingJourney #LearnInPublic #PythonStrings #Programming #100DaysOfCode #Consistency #TechSkills
To view or add a comment, sign in
-
-
Task 4: Fibonacci Sequence Math meets Code! 🧮 For Level 2 Task 4 with @Cognifyz Technologies, I worked on the classic Fibonacci Sequence. I wrote a Python function that generates the Fibonacci sequence up to a given number of terms requested by the user. Watch the code execution below! 👇 #cognifyztechnologies #cognifyz #cognifyztech #Python #Algorithms
To view or add a comment, sign in
-
#learningwithTechcrush #tech4africa #Techcrush I used to think that for you to learn tech you must understand everything about python until I started learning with Techcrush that exposed me to area of python that I need to learn
To view or add a comment, sign in
-
Day 4/30 – Python 🐍 Today I learned about lists in Python how to store multiple values and perform operations like append, remove, and slicing. Practiced a few problems and started understanding how powerful data structures can be. Getting better every day 📈 #Day4 #Python #CodingJourney #LearningInPublic
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
The journey begins.