🌙 Day 5/100 | #100DaysOfCode 🚀 Late nights, quiet focus, and Python learning 🐍💻 Today I explored two very important basics of Python: Identifiers & Keywords ✨ 🔹 Identifiers I learned how identifiers are used to name variables, functions, and classes—and why using meaningful names makes code clean and readable. 🔹 Keywords Python keywords are reserved words with predefined meanings. They help Python understand what to do, and we can’t use them as variable names. These small concepts may look simple, but they play a big role in writing correct and professional code 🔑 📌 Learning daily, even if it’s just one concept. 📌 Staying consistent, even on late nights. One day at a time. One line of code at a time 🚀 #Python #100DaysOfCode #PythonLearning #CodingJourney #LearnToCode #DeveloperMindset #Consistency
Python Basics: Identifiers & Keywords
More Relevant Posts
-
🌙 Day 17/100 | #100DaysOfCode | Python Learning Journey 🐍 Late night learning hits different, but still showing up 💻✨ Today, I learned some very important control flow concepts in Python: 🔹 Loop with else Didn’t know that loops can have an else part too! It runs when the loop completes without a break — very useful in search-type programs. 🔹 break Statement Used to stop the loop immediately when a condition is met. Helps save time and unnecessary iterations. 🔹 continue Statement Skips the current iteration and moves to the next one. Perfect when you want to ignore certain values but keep the loop running. 🔹 pass Statement Acts as a placeholder when syntax is needed but no action is required (yet). Simple, but important while structuring code. Slow progress is still progress. Learning, practicing, and moving forward — one step at a time 🚀 If you’re also learning Python, let’s connect and grow together 🤝 #Python #100DaysOfCode #LearningEveryday #CodingJourney #LateNightLearning #TechSkills #BeginnerProgrammer #Consistency
To view or add a comment, sign in
-
🌙 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 19: Top Learning 🧠 | Built-in Functions in Python Built-in functions are Python’s superpower ⚡ Instead of writing long logic, Python gives ready-made tools to work faster, cleaner, and smarter. From string methods like lower(), strip(), replace() to list functions like append(), sort(), len() and number functions like round(), abs(), sum() - 👉 This is how real Data Analysts save time and write efficient code. Less code. More clarity. Better analysis. 🚀 Python is becoming more practical and powerful. Satish Dhawale SkillCourse #Python #DataAnalytics #LearningJourney #BuiltInFunctions
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
-
-
🚀 Day 29/100 | #100DaysOfCode — Python Learning Journey 🐍 Today I explored two very important file handling methods in Python: 👉 tell() and seek() — and they completely changed how I think about reading files 📄➡️🧠 Here’s what I learned today 👇 🔹 tell() — Where am I in the file? tell() helps to find the current position of the cursor inside the file. It tells us exactly where Python is reading or writing from. 🔹 seek() — Let’s move the cursor With seek(), we can move the file pointer to any position we want. This means we can re-read data, skip data, or jump to a specific part of the file. 🔹 Why this matters Now I understand how Python controls from where to read and where to write in large files — which is super useful in real projects. Small concepts, but very powerful when building real applications 💡🔥 Still learning. Still showing up. One step closer every day 💪 👉 Trust the process. Keep coding. #Python #FileHandling #tell #seek #100DaysOfCode #LearningInPublic #CodingJourney #Consistency
To view or add a comment, sign in
-
🟢 DAY 9: List Methods in Python 📋🐍 Today I learned that Python gives us built-in tools to work with lists easily — called list methods 🛠️ They help us add, remove, count, and organize data without writing complex code. 👇 Examples in the image ➕ append() → adds an item to the list ❌ remove() → removes an item 🔢 len() → counts items 🔁 sort() → arranges items 💡 These small methods are used everywhere — from simple programs to real-world applications. Learning basics slowly, one day at a time 🌱 💬 Comment LIST if you’re learning Python 📌 Save this post for revision 👉 Follow for Day 10 🚀 #Python #PythonBasics #LearningInPublic #CodingJourney #BeginnerFriendly
To view or add a comment, sign in
-
-
Day 12 | Mini Python Insight A small Python realization that made learning easier 👇 Instead of asking: ❌ “How do I write perfect code?” Ask: ✔️ “Can I make the logic clear?” Clean logic > fancy code. When learning Python, focus on: writing readable code understanding the flow fixing mistakes instead of fearing them Errors are not failures. They’re feedback. This shift alone made Python feel less scary and more logical. If you’re learning Python — what part feels confusing right now? #Day12 #PythonTips #PythonLearning #DataScienceBasics #AIWithPython #CodingJourney #LearningInPublic #BeginnerToPro
To view or add a comment, sign in
-
🌙 Day 20/100 | #100DaysOfCode 🚀 Today’s Learning: Functions in Python 🐍 Today I learned about Functions — one of the most useful concepts in Python for writing clean and reusable code. 🔹 What is a Function? A block of code that performs a specific task and runs when it is called. 🔹 Why Functions are Important: ✔ Avoid repeating code ✔ Make programs easier to read ✔ Easy to test and update ✔ Helps in building large projects 🔹 Things I practiced today: • Defining a function using def • Passing parameters • Returning values using return • Calling functions multiple times It feels good to see how small blocks of code can make big programs simple and organized. Slowly but surely, moving forward in my Python journey 💻✨ 👉 Consistency is the key. One concept at a time. #Python #100DaysOfCode #FunctionsInPython #LearningToCode #CodingJourney #DeveloperInMaking #DailyLearning #TechSkills #KeepGoing
To view or add a comment, sign in
-
Most people don’t struggle with Python syntax. They struggle with thinking like Python. Variables, memory, and scope are not just basic topics, they are the foundation of how Python actually works. If these concepts don’t click, Python never really clicks. That’s why I wrote a short e-book on Python Variables, where I explained: How variables relate to memory (RAM), what assignment really means and how scope works behind the scenes. All explained using simple real-life analogies, not theory-heavy jargon. If you’re learning Python or teaching it, this foundation should not be skipped. #Python #Programming #LearnPython #SoftwareEngineering #TechEducation
To view or add a comment, sign in
-
Day 1 of learning Python 🐍 Today I understood something small but important: Python reads code line by line — top to bottom. This sounds obvious, but it helped me understand why errors happen when variables are used before they’re defined. My goal: learn Python consistently and share what I genuinely understand — not what I memorize. If you’re learning Python too, we’re on the same path.
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