🎥 Day 13 (Part 3) of My Python Learning Journey! Hi everyone, Today I explained the remaining Python argument types with simple examples. 1. Arbitary positional Argument 2. Arbitary keyword Argument This video continues from Part 1 and Part 2, helping to complete the understanding of how arguments work in Python functions. Thank you for watching and supporting my learning journey! 🚀 #Python #Learning journey #Django #Mysql #Selvacodes
More Relevant Posts
-
Python Data Types – The Foundation of Every Program 🐍 In today’s post, I covered the 4 basic data types every beginner must know: 🔹 int 🔹 float 🔹 str 🔹 bool These may look simple, but every Python program you write depends on them 💡 Now let’s test your understanding 👇 What will be the output of this? print(type(99.0)) A) int B) float C) str D) bool Drop your answer below ⬇️ Let’s see who’s paying attention 😌🔥 #Python #Programming #CodingJourney #LearnToCode #WomenInTech #TechBasics
To view or add a comment, sign in
-
-
Python Tip of the Day 🐍 Comments in Python are used to explain code and improve readability — they are ignored during program execution. Use single-line (#) for short notes and triple quotes for longer explanations. Comments explain the code — Python skips them, humans don’t. Day 3 of building Python basics. #PythonDaily #PythonBasics #DataAnalytics #CommentsInPython #LearningPython
To view or add a comment, sign in
-
-
"Pandas Cheat Sheet 🐼📊 Quick reference for essential Pandas operations every beginner should know. Save this post for revision and keep practicing! 🚀 #Python #Pandas #DataAnalysis #DataScience #Learning"
To view or add a comment, sign in
-
-
📘 Day 2 of Learning Python 🐍 Today I focused on Python Variables & Identifiers — the building blocks of clean code. What I learned 👇 🔹 How Python assigns values using variables 🔹 Why Python doesn’t need explicit data types 🔹 How variables can be reassigned anytime 🔹 The power of unpacking with * 🔹 Why naming variables correctly really matters Small rules. Big impact on readability and bug-free code. Learning one concept at a time, consistently 🚀 #Day2 #LearningPython #PythonJourney #ProgrammingBasics #PythonDeveloper #CodingLife #100DaysOfCode #Consistency
To view or add a comment, sign in
-
-
📘 Day 7 Python Progress: Understanding Functions and Modules. 😎 Today I covered the following topics in Python: 🔹 Functions. 🔹 User-Defined Functions. 🔹 Function Call. 🔹 Named Functions. 🔹 Optional / Default Parameter Arguments. 🔹 Return Statement. 🔹 Break Statement. 🔹 Continue Statement. 🔹 Local Variables. 🔹 Global Variables. 🔹 Statements. 🔹 Modules. 🔹 Importing a Module. 🔹 Using a Function from a Module. Consistently learning and building strong Python fundamentals 💪🚀 Hashtags....... #Python #PythonLearning #LearnToCode #CodingJourney #ProgrammingBasics #Day7 #100DaysOfCode
To view or add a comment, sign in
-
-
Learning Python one concept at a time 🐍 After variables & data types, here’s the next big idea 👇 Python Basics — Day 3 🐍 📌 Concept :🖥 Input & Output 👉 Input: We talk to Python (input()) 👉 Output: Python talks to us (print()) This is where programs become interactive, not just static. Sharing beginner-friendly Python basics — with simple examples and practice questions to learn by doing 📘✍️ If you’re learning Python too, let’s connect 🤝 #Python #DataTypes #Learning #Beginners #PythonBasics #Upskilling #TechLearning #CareerGrowth #AI #AILearning #developer #pythondeveloper
To view or add a comment, sign in
-
🚀 Day 6 | Flow Control Statements in Python This is the point where Python stops being just syntax and starts becoming logic. In today’s notebook, I deeply worked on Flow Control (Control Structures) — the backbone of decision-making and iteration in Python programs. What I covered today: if, if-else, if-elif-else with real decision-based programs Special cases and condition evaluation rules match-case (Python 3.10+) for clean multi-way decision making for and while loops (including else with loops) Transfer statements: break, continue, pass Nested loops and their use cases Hands-on programs: biggest of numbers digit-to-word logic prime number check perfect number check string reversal using loops What stood out to me is how small condition mistakes completely change program flow, and how important it is to understand execution order, not just syntax. 🙏 Grateful to my mentor Nallagoni Omkar Sir for emphasizing clarity, edge cases, and real-world logic while learning these fundamentals. 📌 Continuing my learning-in-public journey — building Python foundations the right way. 👉 Next up: Functions 🚀 #Python #CorePython #FlowControl #ConditionalStatements #Loops #LearningInPublic #StudentOfDataScience #ProgrammingFundamentals #NeverStopLearning
To view or add a comment, sign in
-
Day 10/60 🚀 60 Days Python Series 🐍 🔥 How to assign a variable to 0 in Python There are multiple ways to do the same thing in Python 👨💻 Understanding this helps you write clean and flexible code. Examples you’ll learn today: ✔ x = 0 ✔ x = int() ✔ x = 1 - 1 ✔ x = abs(-0) Master the basics and Python becomes easy 💡 📌 Save this post for revision 💬 Comment “python” if you’re following the series ➡️ Follow for daily Python tips #60dayspython #pythonseries #learnpython #pythonbasics #codingreels #programminglife #logicbuilding #pythonforbeginners
To view or add a comment, sign in
-
🧠 “Interesting Python Nugget” (Lists) Python List Trick You’ll Actually Use Did you know you can remove duplicates from a list in ONE line? nums = [1, 2, 2, 3, 4, 4] unique_nums = list(set(nums)) ✔ Simple ✔ Fast ✔ Super handy for real projects Python has tons of these tiny gems that save time and make code cleaner. 📬 We explain one Python concept every day — short, clear, and practical. Want more? Subscribe and learn Python daily ✨ link in the comments Please sign up and follow #PythonChallenge #PythonLearning #CodeChallenge #PythonDaily #PyDaily
To view or add a comment, sign in
-
-
Day 14 – Python Learning Journey 📌 Topic: String Methods Today I learned about String Methods in Python. Strings are widely used for handling text data. 🔹 Important Methods: upper() → Converts to uppercase lower() → Converts to lowercase strip() → Removes extra spaces replace() → Replaces text split() → Converts string into list find() → Finds position of substring count() → Counts occurrences startswith() / endswith() → Checks beginning & ending 🔹 Key Points: ✅ Strings are immutable ✅ Methods return new strings ✅ Useful for data cleaning & validation 📌 Day 14 completed successfully! 🐍 #Python #Day14 #StringMethods #LearningJourney
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