🌙 Day 4/100 | #100DaysOfCode 🚀 Wrapping up my day by learning something new in Python 🐍 Today’s focus was on Type Function and Comments — small concepts, but very important. 🔹 Type Function (type()) Helped me understand what kind of data a variable is holding. Super useful when writing or debugging code. 🔹 Comments Learned how comments make code easier to read, understand, and maintain. They don’t run with the code, but they definitely make you a better programmer. Ending the day with clarity and consistency ✨ One step closer, one line of code at a time 💻 👉 Learning daily, even if it’s a little. #Python #100DaysOfCode #CodingAtNight #PythonLearning #DeveloperJourney #TechSkills #Consistency #LearningEveryday
Learning Python with Type Function and Comments
More Relevant Posts
-
When you start a new project, it feels great. But soon, you are drowning in a sea of independent variables. Or worse, you find yourself copy-pasting the same block of code 10 times just to print a few items. This isn't just annoying; it leads to buggy, unreadable code. In my latest tutorial, we fix this by unlocking two fundamental Python "superpowers": 1️⃣ 𝐃𝐢𝐜𝐭𝐢𝐨𝐧𝐚𝐫𝐢𝐞𝐬: Stop using lists for complex data. Give your data context with key-value pairs. 2️⃣ 𝐋𝐨𝐨𝐩𝐬: Stop repeating yourself. Automate the boring stuff in two lines of code. If you want to move from "messy scripting" to clean programming, this video is for you. Watch it here: https://lnkd.in/dk8EJGXe #Python #LearningToCode #SoftwareDevelopment #CodingTips #CleanCode
Python for AI Beginners | Dictionaries, For Loops, and While Loops Explained
https://www.youtube.com/
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 2/100 – #100DaysOfPython 🐍 Today was about revising core Python fundamentals and strengthening my logic. What I revised today: • If–else conditional statements • Loops (for & while) • Basic logic-based programs Revisiting these concepts helped me reinforce the foundation that every efficient program depends on. Key takeaway: Even a 1% improvement or revision each day compounds into big results over time. Progress doesn’t need to be fast — it just needs to be consistent. Staying disciplined and moving forward 🚀 #Python #100DaysOfCode #LearningInPublic #BTech #CodingJourney #Consistency
To view or add a comment, sign in
-
-
Day 5 — #30DaysOfPythonWithKapil 🚀 Today I solved a Python problem: Armstrong Number The task was to: Read a number N and check whether it is an Armstrong Number or not. 👉 An Armstrong Number is a number where the sum of each digit raised to the power of total digits equals the number itself. Example: 1634 → --- What I practiced & understood today: ✅ ✔ Converting number to string for digit access ✔ Using len() to get total digits ✔ Applying power operation on each digit ✔ Looping through digits using for loop ✔ Strengthening logical thinking step-by-step Sharing my solution below 👇 (Attached code screenshot) This daily practice is really helping me understand logic + fundamentals more clearly. Small steps every day, but staying consistent 💪 Let’s keep learning and growing 🚀💻 #Python #CodingJourney #ArmstrongNumber #ProblemSolving #Consistency #LearnInPublic #LogicBuilding #FutureDataScientist
To view or add a comment, sign in
-
-
🚀 New Python Tutorial: Loop Control Statements Most beginners know loops — but very few know how to control them properly. In my latest tutorial, I explain break, continue, and pass in Python with clear logic and real examples. 🔑 You’ll learn: ✔️ How break exits a loop instantly ✔️ How continue skips the current iteration ✔️ Why pass exists (and when to use it) ✔️ Common mistakes that hurt logic building These concepts are fundamental for DSA, interviews, and real-world coding. 🎯 Strong foundations > advanced frameworks. 📌 Watch here: [https://lnkd.in/gv7JsA83] #Python #Programming #DSA #LearnToCode #SoftwareEngineering #PyWired #TechEducation
To view or add a comment, sign in
-
-
introduced decision-making in code, and this felt like a major milestone. I learned how Python uses: if to check conditions elif for multiple conditions else for fallback logic This is where programs stop being linear and start becoming smart. The code now reacts differently based on different situations — just like real life decisions. Understanding conditions taught me how important clarity and structure are. One small mistake in logic can completely change the program’s behavior. Today’s learning made coding feel more powerful and purposeful. Slow progress, strong foundation. #Python #Day6 #ConditionalStatements #ProblemSolving #DeveloperMindset #LearningPython
To view or add a comment, sign in
-
-
🌙 Day 6/100 | #100DaysOfCode 🚀 Today’s learning in Python 🐍 was about a simple but very useful concept 👉 Slice Operator I learned how slicing helps us extract required parts of data from strings, lists, and tuples without writing extra logic. 🔹 Slice Operator (:) Makes data handling easier Reduces code length Improves readability Very useful in real-world data work Small steps, but moving forward every day 💻 Consistency > Motivation 👉 Ready to continue the journey 🚀 #Python #PythonLearning #100DaysOfCode #LearningJourney #CodingLife #DeveloperInProgress #Consistency #DailyLearning
To view or add a comment, sign in
-
Python Cheat Sheet: From Basics to Data Structures Here is a quick reference guide perfect for beginners or anyone needing a syntax refresh. Lists, Tuples, Sets, and Dictionaries (including a comparison table!). No fluff, just the code you need. #Python #Coding #CheatSheet #Programming #Developer
To view or add a comment, sign in
-
-
🔁 Master the while Loop in Python | New Tutorial 🚀 Understanding loops is a turning point in every programmer’s journey — and the while loop plays a critical role when the number of iterations is unknown. In my latest tutorial, I break down the Python while loop in a simple, beginner-friendly way with real logic-building examples. 👇 In this tutorial, you’ll learn: ✅ What a while loop is and how it works ✅ Syntax & flow of execution ✅ Infinite loops and how to avoid them ✅ Using break and continue effectively ✅ Practical examples for problem-solving & DSA Whether you’re new to Python, brushing up your fundamentals, or preparing for coding interviews, this tutorial will strengthen your core logic. 📌 Watch the full tutorial here: [https://lnkd.in/gAUK2f89] Let’s build strong foundations before jumping to advanced topics. #Python #WhileLoop #LearnPython #DSA #Programming #Coding #SoftwareEngineering #PyWired #TechEducation
To view or add a comment, sign in
-
-
Today I worked on a Python logic exercise focused on list traversal, duplicate handling, and comparing two lists of different lengths using pure loops. 🔹 What this code does: Takes two lists with different lengths, both containing repeated numbers Iterates through them safely using index-based nested loops Collects common elements while preserving order Removes duplicate values manually, without using built-in shortcuts like set() 🔹 Why I approached it this way: Instead of relying on Python conveniences, I deliberately used: Explicit for loops Conditional logic Intermediate lists This forced me to think about: Boundary conditions when list sizes don’t match How duplicates are detected step by step Writing logic that doesn’t assume equal input sizes 🔹 Key takeaway: Understanding fundamentals—especially edge cases like unequal input lengths—builds stronger problem-solving skills than jumping straight to optimized one-liners. Consistent practice, steady improvement. 💻📈 #Python #Programming #LogicBuilding #DataStructures #ProblemSolving #CodingPractice
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