#PythonLearningJourney | Day 1 💻 Today, I explored one of the fundamental concepts in Python — Variables. 🎯 Topic: Variables 🧠 Key Learnings: Variables are used to store data values. Values are assigned using the = operator (example: x = 10). Variable names should be meaningful, clear, and not start with numbers. 💻 Practice: Wrote a few simple programs using variables and displayed their values with the print() function. Continuing to strengthen my programming basics and grow step by step with 10k Coders. 🚀 #Python #LearningJourney #FullStackDevelopment #Coding #Consistency #Growth #10kCoders
Learned Variables in Python on Day 1 of 10k Coders
More Relevant Posts
-
🐍 Ready to code your future with Python? This beginner-friendly course introduces you to programming in Python, covering everything from writing and reading code to testing and debugging. Learn: 🔹 Functions, variables, types & conditions 🔹 Boolean expressions & loops 🔹 Objects, methods & exceptions 🔹 File I/O & working with libraries With hands-on exercises inspired by real-world problems, you’ll build practical skills from day one. https://lnkd.in/dfMi_-mM #ViewKamer #PythonProgramming #CodingForBeginners #TechSkills #LearnToCode #FutureReady
To view or add a comment, sign in
-
-
🔁 Recursion in Python And Module And Main Function Recursion is one of the most powerful and elegant ideas in programming — a function calling itself to solve a problem step by step. Just like in life, sometimes solving a big challenge means breaking it into smaller parts and tackling each one recursively until we reach the “base case.” Excited to share my notes on recursion — a key concept for anyone learning Python and problem-solving! #Python #Recursion #Programming #CodingJourney #LearningEveryday
To view or add a comment, sign in
-
Day 6 of #100DaysOfCode Python Functions & While Loops: Today I deepened my understanding of how Python programs are structured and how they control execution using functions and while loops. These two concepts are foundational for clean, reusable, and interactive code. 💻 What I learned: ✅ How to define and call functions to organize code ✅ Passing data into functions using parameters ✅ Returning values for flexible reuse ✅ Using while loops to run code continuously until a condition changes 🧠 Reflection: Today showed me how functions help break complex tasks into smaller pieces, while loops keep programs dynamic and responsive. These concepts are starting to feel natural and this is making sense now! Step by step, the picture becomes clearer. Today's session has been a challenge to me but I finally got to know how things work through interacting with the Reeborg's World game that uses the above concepts. #100DaysOfCode #Python #LearningInPublic #CodingJourney #DeveloperLife #Programming #Udemy #PythonProBootcamp #Consistency
To view or add a comment, sign in
-
🚀 Learning Python Step-by-Step! Today I explored one of the most important programming concepts — Conditional Statements 🧠 📘 This file explains how Python uses if, elif, and else statements to make logical decisions. 🔹 Simple logic, powerful results! 🔹 It helps Python decide what to do next — just like decision-making in real life. #Python #Programming #DataScience #LearningJourney #CodeNewbie #PythonBasics #ConditionalStatements #JupyterNotebook #Coding
To view or add a comment, sign in
-
✨ DSA Day 11 — Star Patterns in Python ✨ Today I explored one of the most fun and logical parts of programming — Star Patterns ⭐ These problems may look simple, but they teach powerful concepts like nested loops, iteration control, and pattern logic building — the foundation for solving complex problems later. 💡 Patterns I practiced today: 🔹 scales pattern with spaces 🔹 square space with spaces 🔹 bike stand 🔹 reverse bike stand Each pattern improved my understanding of how loops manage rows, columns, and spaces — perfect for strengthening logic and attention to detail! 💪 #100DaysOfCode #DSA #Day11 #Python #CodingJourney #PatternPrograms #LogicBuilding #LearnToCode Vignesh Reddy Julakanti
To view or add a comment, sign in
-
💻 For CS enthusiasts ( students especially ) learning about creating new Programming Languages, or may be understanding ( a small part of ) the internals of Python to help contribute to it, this is an absolutely wonderful video that starts from the "History of GIL" and goes on to explain interesting concepts used inside Python in such lucid and succinct manner : https://lnkd.in/g-5qt3XV You will get to learn a lot about the Design decisions made inside Programming Languages. And how they might need a relook as technology progresses with time ....
PyCon 2015 - Python's Infamous GIL by Larry Hastings
https://www.youtube.com/
To view or add a comment, sign in
-
Day 2: Exploring Python Functions! Today, I continued my Python learning journey by diving deep into one of the most important concepts — Functions! Functions make our code reusable, organized, and clean. Instead of writing the same code again and again, we can define it once and call it anytime. Here’s what I learned today 1️⃣Functions in Python 2️⃣Types of Functions 3️⃣Parameters vs Arguments 4️⃣Types of Arguments Every function tells a small part of a bigger story in programming breaking problems into manageable steps! Ajay Miryala 10000 Coders #Python #CodingJourney #LearnPython #Programming #Functions #LinkedInLearning #Day2
To view or add a comment, sign in
-
In today’s session, we explored another essential topic in Python — Functions 🧩 Functions help us organize code, reduce repetition, and make programs modular and efficient. They are the building blocks of structured programming. Here’s what I covered: ✅ What functions are and why we use them ✅ How to define and call functions using the def keyword ✅ Parameters and arguments – passing data into functions ✅ Return statement – sending results back from functions ✅ Difference between built-in and user-defined functions Students practiced writing their own functions to perform specific tasks and saw how reusable code makes development faster and cleaner. 💻✨ 📚 If anyone wants to join my Python course or get online tuition, feel free to contact me: 📧 anisulhaq80@gmail.com 📞 +92 315 9701725 #Python #PythonForBeginners #Programming #CodingLife #Functions #PythonCourse #TeachingJourney #OnlineTuition #LearnWithAnis #SkillDevelopment #PythonTeacher #Day9
To view or add a comment, sign in
-
🔹 Understanding Functions in Python — The Building Blocks of Reusability Post Content: Functions make our code clean, reusable, and efficient. In this short note, I’ve covered: What are functions in Python Difference between normal and lambda functions Use of map() and filter() Global vs local variables Python functions are not just about writing less code — they’re about writing smarter code. Exploring these basics strengthens your foundation for data science and automation. 💬 What’s your favorite Python function or feature that saves you time? #Python #Coding #Learning #DataScience #Programming #Functions
To view or add a comment, sign in
-
Day 13: #100DaysOfCodingChallenge 🚀 Focusing today on in-place array transformation patterns in Python, specifically replacing each element with the greatest value among those to its right. 📌 Today's Progress: 1️⃣ Replace Elements with Greatest Element on Right Side (LeetCode 1299) 👉Problem: Modify the array so each element is replaced by the greatest element to its right (final element set to -1). 👉Approach: Scanned the array from right to left, tracking the current maximum 'max_right' and updating each value in-place. Achieves O(n) time and O(1) space with a clean backwards pass. Practising these in-place update patterns helps build critical skills needed for real-world coding and interview scenarios. Thanks as always to Nandan Kumar Mishra Sir and #KRMangalamUniversity for their continuous encouragement! #DSA #100DaysOfCodingChallenge #CodingChallenge #ProblemSolving #Python #Array #InPlace #LeetCode #LearningTogether #100DaysOfCode
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