🌙 Day 9/100 | #100DaysOfCode 🚀 Ending my day by learning something new in Python 🐍 Today’s focus was on Lists in Python — a very useful data structure to store multiple values in one place. 🔹 What is a list and why we use it 🔹 How to access elements using index 🔹 How to add and remove items from a list 🔹 How lists make data handling easier and faster Example: numbers = [10, 20, 30, 40] Learning step by step and staying consistent ✨ Small progress every day, but moving forward 💪 👉 Learning daily, even if it’s a little. #Day9 #100DaysOfCode #PythonLearning #DeveloperJourney #Consistency #LearningEveryday
Learning Python Lists for Efficient Data Handling
More Relevant Posts
-
🚀 Day 6 of Learning Python : Today was all about mastering Python functions and writing cleaner, reusable code ⚙️ 📌 What I learned today: 🔹 Defining functions and using return vs print 🔹 Parameters vs arguments 🔹 Function polymorphism (same function, different behavior) 🔹 Multiple return values (tuples) 🔹 Default parameters for safer functions 🔹 Lambda functions for quick logic 🔹 *args and **kwargs for flexible inputs 🔹 Generators & yield for memory efficiency 🔹 Recursion and base cases From writing lines of code to designing logic systems — real growth today 💡 One step deeper into Python 💪 #Day6 #PythonLearning #Functions #CleanCode #LearningInPublic 🚀
To view or add a comment, sign in
-
🚀 Day 17 of Learning Python 🐍 Continuing my Python learning journey through a SkillCourse by Satish Dhawale, today’s focus was on the range() function with loops — a core concept for controlled iteration in Python. 🔢 range() Function 1) Generates a sequence of numbers. 2) Commonly used with for loops. 3) Supports start, stop, and step values. 4) Understanding range() made looping more structured and predictable. 💡 Day 17 Takeaway: range() brings precision and control to repetitive logic. Building clarity step by step with consistent practice. On to Day 18 🚀 #Python #LearningPython #RangeFunction #ForLoop #SkillCourse #SatishDhawale #Day17 #ProgrammingBasics #Upskilling
To view or add a comment, sign in
-
-
Day 3 of My Python Learning Journey 🐍 Topic: Variable Reinitialization Today I learned about variable reinitialization (reassignment) in Python. It means you can give a variable a new value at any time, and Python will update it. 🔁 Simple Example: score = 50 print(score) # 50 score = 90 # Reinitialization print(score) # 90 💡 What I understood: Variables are not fixed — they can change during program execution Reinitialization helps make programs dynamic and flexible It’s useful when values depend on conditions, loops, or user input 📌 Key Takeaway: A variable name stays the same, but its value can be updated anytime in Python. Day 3 complete! Feeling more confident with Python basics 💪 On to the next concept tomorrow 🚀 #PythonLearning #Day3 #CodingJourney #Variables #Reinitialization #LearnPython #BeginnerToPro
To view or add a comment, sign in
-
-
🚀 Day 11 of Learning Python 🐍 Continuing my Python learning journey through a SkillCourse by Satish Dhawale, today’s topic was Python Loops — specifically using loops to repeat tasks efficiently. 🔁 Loops (for loop) 1) Used to iterate over sequences like strings, lists, and ranges 2) Helps execute the same block of code multiple times 3) Makes programs shorter, cleaner, and more efficient 4) Understanding loops showed how repetition can be handled logically without rewriting code again and again. 💡 Day 11 Takeaway: Loops bring efficiency and structure to programs. Learning consistently and strengthening fundamentals step by step. On to Day 12 🚀 #Python #LearningPython #Loops #ForLoop #SkillCourse #SatishDhawale #Day11 #ProgrammingBasics #Upskilling
To view or add a comment, sign in
-
-
🌙 Day 21/100 | #100DaysOfCode 🚀 Learning Python Functions 🐍 Today I learned about Functions in Python and how useful they are in writing clean and reusable code. Here’s what I understood today 👇 🔹 What is a function? A function is a block of code that performs a specific task and can be reused again and again. 🔹 Why use functions? ✔ Reduces code repetition ✔ Makes programs easier to understand ✔ Helps in organizing logic properly This helped me understand how we can pass values and get output using functions. Still learning step by step, but feeling more confident with each concept 😊 Consistency really makes a difference! 👉 Tomorrow, I’ll practice more problems using functions. #Python #PythonLearning #FunctionsInPython #100DaysOfCode #LearningJourney #CodingDaily #FutureDataAnalyst #KeepLearning
To view or add a comment, sign in
-
30 Days of LeetCode — Day 7 Problem: Rotate Array Language: Python 🧠 Key Idea: Rotate the array to the right by k steps. ✨ Learning: Using the reverse approach — reverse the entire array, then reverse the first k elements and the remaining elements — allows rotation to be done in-place with O(1) extra space. On to the next day
To view or add a comment, sign in
-
-
🚀 Day 8 – Learning Conditional Statements & Loops in Python 🐍📘 Today, I explored some of the most important foundational concepts in Python that help programs make decisions and repeat actions. 📌 Today’s Learning Highlights: 🔹 Conditional statements: if, elif, else 🔹 Understanding decision-making logic 🔹 Loops: for and while 🔹 Repeating tasks using loops 🔹 Basics of program flow control Still learning, still practicing, and building my understanding step by step. Every concept learned today brings more clarity and confidence 💡 ✨ Consistency > Perfection Learning daily, improving gradually 🚀 #PythonLearning #DataScienceJourney #ConditionalStatements #Loops
To view or add a comment, sign in
-
-
🐍 #Day8 of Python Learning 🚀 📚 Topic: Loops in Python with Simple Examples Trainer: Manivardhan Jakka 🔁 for Loop Examples ✔ Iterating through a range of numbers ✔ Looping through lists like fruits 👉 Best used when the number of iterations is known 🔄 while Loop Examples ✔ Repeating code based on conditions ✔ Useful when iterations depend on logic rather than count ⛔ Control Statements in Action 🛑 break – Stops execution when a condition is met ⏭️ continue – Skips a specific iteration 🏁 pass – Acts as a placeholder for future logic Learning Python feels more practical and exciting when concepts are backed with examples 💪🐍 Onwards to deeper problem-solving 🚀 10000 Coders #Day8OfPythonLearning #PythonLoops #PythonExamples #PythonPractice #LearningPython #CodingJourney #10000Coders
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
-
🚀 Day 16 of Learning Python 🐍 Continuing my Python learning journey through a SkillCourse by Satish Dhawale, today’s topic was Sets — useful for working with unique and unordered data. 🔹 Sets 1) Store only unique values. 2) Unordered and unindexed. 3) Helpful for removing duplicates and performing set operations. 4) Learning sets helped me understand how Python handles uniqueness and comparison of data efficiently. 💡 Day 16 Takeaway: Sets are best when uniqueness matters more than order. Strengthening fundamentals one concept at a time. On to Day 17 🚀 #Python #LearningPython #Sets #PythonBasics #SkillCourse #SatishDhawale #Day16 #ProgrammingBasics #Upskilling
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