🚀 Day 11 – Palindrome Check in Python 💻 Today’s task: Write a program to check whether a string is a palindrome. 🔍 A palindrome is a string that reads the same forward and backward (e.g., madam, racecar). 📌 This exercise helped me understand: • String manipulation 🧩 • Reversing techniques 🔁 • Writing clean conditional logic ⚙️ ✨ Simple problem, but great for strengthening core programming concepts. 📈 Staying consistent and improving every day. #Python #100DaysOfCode #CodingJourney #Programming #ProblemSolving #Developer #LearnToCode #Tech #PythonTips
Palindrome Check in Python with 100DaysOfCode
More Relevant Posts
-
📚 New Tutorial on SYUTHD: Mastering Agentic RAG: Building Local Multi-Agent Workflows with Python 3.14 in 2026 🏷️ Category: Python Programming 📖 Read it here → https://lnkd.in/g7g59VrY 💬 Telegram: https://t.me/nisethtechno 👍 Facebook: https://lnkd.in/gsKv3Dyn #PythonProgramming #Tech #Tutorial #Programming #2026
To view or add a comment, sign in
-
📚 New article just published on SYUTHD! 🔖 Mastering Python 3.14: Building High-Performance Multi-Agent Systems without the GIL 🏷️ Category: Python Programming 📖 Full article → https://lnkd.in/gjrk-2TZ 👉 Follow our page for more tech tutorials: https://lnkd.in/gsJDptPM 💬 Telegram: https://t.me/nisethtechno 👍 Facebook: https://lnkd.in/gsKv3Dyn #PythonProgramming #Tech #Tutorial #Programming #TechBlog #2026
To view or add a comment, sign in
-
Day 104/200 LeetCode Decode Ways using Dynamic Programming in Python. Today’s challenge was about finding how many different ways a numeric string can be decoded into alphabets (1 = A, 2 = B … 26 = Z). Used DP with space optimization Handled tricky cases like leading zeroes ("0") and invalid combinations ("06") Consistency is the real key One problem closer to mastery. #Dayof200 #LeetCode #Python #DynamicProgramming #CodingChallenge #ProblemSolving #Programmer #CodingJourney
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
-
📚 New article just published on SYUTHD! 🔖 Python 3.14 Sub-interpreters: The Definitive Guide to True Parallelism Without the GIL 🏷️ Category: Python Programming 📖 Full article → https://lnkd.in/dJjcff3y 👉 Follow our page for more tech tutorials: https://lnkd.in/gsJDptPM 💬 Telegram: https://t.me/nisethtechno 👍 Facebook: https://lnkd.in/gsKv3Dyn #PythonProgramming #Tech #Tutorial #Programming #TechBlog #2026
To view or add a comment, sign in
-
🐍 Python Tip 1: Use type() when things don’t behave as expected Sometimes errors happen simply because the variable type is not what we assumed. Example: num = "10" print(num + 5) Error occurs because "10" is a string, not an integer. Quick check: print(type(num)) Output: <class 'str'> Convert when needed: num = int(num) A simple habit that saves debugging time. #Python #Debugging #Programming #LearnPython
To view or add a comment, sign in
-
Day 8/30 – Python Coding Challenge 🐍 📌 LeetCode Problem 11: Container With Most Water 💡 Problem: Find two lines that form a container holding the maximum water. 🧠 What I learned: • Two-pointer technique • Optimizing brute force (O(n²) → O(n)) • Smart decision making using minimum height 💻 Example: Input: [1,8,6,2,5,4,8,3,7] Output: 49 🚀 Insight: By moving the pointer with smaller height, we can efficiently maximize the area. Learning to think smarter, not harder 💪 #30DaysOfCode #Python #LeetCode #TwoPointers #CodingChallenge #ProblemSolving
To view or add a comment, sign in
-
-
📚 New article just published on SYUTHD! 🔖 Unlock Client-Side Python: Build Interactive Web Apps with Pyodide & WebAssembly 🏷️ Category: Python Programming 📖 Full article → https://lnkd.in/d2ZuEWc6 👉 Follow our page for more tech tutorials: https://lnkd.in/gsJDptPM 💬 Telegram: https://t.me/nisethtechno 👍 Facebook: https://lnkd.in/gsKv3Dyn #PythonProgramming #Tech #Tutorial #Programming #TechBlog #2026
To view or add a comment, sign in
-
Task 2 : Calculator 🚀 Built a Simple Calculator in Python! I recently worked on a basic yet fundamental Python project—a Simple Calculator that performs operations like addition, subtraction, multiplication, and division. 💡 Key Highlights: Took user input using input() Converted values into float for accurate calculations Used conditional statements (if) to perform operations Created a simple menu-driven interface 🔧 This project helped me strengthen: Python basics User input handling Conditional logic Code structuring 📈 Small projects like this are the building blocks for mastering programming and problem-solving. Looking forward to building more such projects and improving my skills! #Python #Programming #Coding #BeginnerProjects #Learning #TechJourney #Codsoft Here is my demo video
To view or add a comment, sign in
-
Understand Python's case sensitivity through a relatable traffic light analogy. This clip explains why 'print' works while 'Print' fails, emphasizing that programming languages, like road rules, require strict adherence to predefined syntax and keywords. #python #codingbasics #casesensitivity #programmingsyntax #pythontutorial #softwaredevelopment #beginnercoding
To view or add a comment, sign in
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
Well done sir 👍keep it up🤝