Day 2 of my Python learning journey.. Today I learned about some useful built-in functions: len(), type(), and id(). data = [10, 20, 30] print(len(data)) # number of items print(type(data)) # data type print(id(data)) # memory location These functions help us understand our data better while writing programs. Small concepts like these make coding clearer and more confident. Learning one day at a time Are you learning Python too? #Python #LearningPython #100DaysOfCode
Mythili Natuva’s Post
More Relevant Posts
-
🚀 Day 03 — Python Learning Journey Today’s learning was all about Python Strings — how Python works with text and how powerful simple text operations can be. Thanku you Saumya Singh ✅ Learned that strings are immutable (cannot be changed after creation) ✅ Understood indexing and slicing to access specific parts of text ✅ Explored string methods to modify and analyze data easily ✅ Practiced f-strings for clean and readable formatting ✅ Learned escape sequences for quotes, tabs, and new lines Small concepts, but very important for writing clean and readable programs. Step by step, consistency is building confidence in coding. 💻✨ #Python #LearningJourney #Coding #PythonBasics #DeveloperJourney #TechCommunity #Developers #OpenToLearn #BuildInPublic #CFBR #PythonLearning #LearnPython #PythonDeveloper #CodingJourney #ProgrammingLife #CodeNewbie
To view or add a comment, sign in
-
LEARNING PYTHON Why Python Lists are a beginner’s superpower 🐍 • Lists let you store multiple values in a single variable. • They are ordered,so elements keep their position. • Lists are mutable – you can add, remove, or update values anytime. • Duplicates are allowed, which is useful for real-world data. • Perfect for loops, algorithms, and data processing. • Commonly used in projects, interviews, and competitive coding • One of the most important Python datatypes to master early #Python #PythonBasics #DataTypes #Coding #LearningPython
To view or add a comment, sign in
-
-
Learning Python one concept at a time 🐍 Python Basics — Day 6🐍 📌 Concept: Data Collection – Part 1 (List) Where Python starts handling multiple values together 📦 Names, numbers, marks, tasks… A list lets Python store them in one place. The key lesson beginners miss 👇 A list keeps order. A list allows duplicates. Practicing with lists helps you manage data, not just single values. Sharing simple explanations + practice questions to learn by doing ✍️ 💬 Comment “DONE” after solving the practice questions If you’re learning Python step by step, let’s connect 🤝 #Python #PythonBasics #Learning #Beginners #Upskilling #TechLearning #CareerGrowth #AI
To view or add a comment, sign in
-
🐍 Day 8 of Learning Python Topic: Multiple-Valued Datatypes – Tuple Today I learned about Tuples in Python — one of the important multiple-valued (collection) data types. 🔹 What is a Tuple? A tuple is a collection that can store multiple values in a single variable. It is: ✔️ Ordered ✔️ Allows duplicates ❌ Immutable (cannot be changed after creation) 🔹 Why use Tuples? • Faster than lists • Protects data from accidental changes • Useful for fixed data like coordinates, days, etc. 🔹 Example: Copy code Python my_tuple = (10, 20, 30, 40) print(my_tuple) 🔹 Accessing elements: Copy code Python print(my_tuple[1]) # Output: 20 Learning Python step by step and enjoying the journey 🚀 Excited for what’s next! #Python #PythonLearning #100DaysOfCode #DataTypes #Tuple #CodingJourney #LearningDaily
To view or add a comment, sign in
-
-
One thing that confuses many Python learners: This works perfectly fine: items = [ ] if items: But items is not a boolean value. So why does this work? Python uses something called truthiness. Instead of checking strictly for True or False, Python checks whether the object is empty or not. Empty list → False Non-empty list → True This small concept makes Python code cleaner and more readable. Understanding these fundamentals helps write better code and perform better in interviews. Detailed explanation: [check first comment 👇] #Python #Programming #SoftwareDevelopment #Learning
To view or add a comment, sign in
-
Week 2 of backend learning: Python 🐍 I’m learning Python as a simpler language for rapid development, and it’s helping me focus more on logic than syntax. This week’s focus: • Variables, loops, and conditions • Lists and dictionaries • Functions and clean code structure Mini exercise I worked on: 👉 Writing a Python program that counts how many times a word appears in a sentence. It was a small task, but it reinforced something important: Understanding data structures makes problem-solving much easier. Still learning, still practicing — and enjoying the process. If you’re learning Python too, what was the first problem that really made things click for you? #Python #BackendDevelopment #LearningInPublic #SoftwareDevelopment
To view or add a comment, sign in
-
-
🚀 Python Learning Journey – Day 11 Today, I learned about Dictionaries in Python and how they store data in key–value pairs. Here’s what I practiced: ✅ Creating dictionaries ✅ Accessing values using keys ✅ Adding and updating elements ✅ Removing elements ✅ Dictionary methods – keys(), values(), items(), get(), update(), pop(), clear() ✅ Using len() with dictionaries Dictionaries helped me understand how to organize data more efficiently. Learning every day and building strong Python basics 💪 Consistency is paying off! #Python #LearningJourney #Beginner #Day11 #Dictionaries #Coding #KeepLearning
To view or add a comment, sign in
-
-
📘 Python Learning Series – Understanding Dictionaries In this video, we explain one of the most important data types in Python — Dictionary. We cover: ✔️ What a dictionary is ✔️ How to create a dictionary ✔️ How to access values using keys ✔️ How to check the data type ✔️ Basic operations on dictionaries Dictionaries are extremely powerful because they store data in key–value pairs, making data handling more structured and efficient. As part of our Python learning journey, we are focusing on building strong fundamentals before moving toward advanced concepts like AI automation. If you’re learning Python, this video will help you clearly understand dictionaries in a simple and practical way. #Python #Programming #CodingJourney #DataStructures #Learning
To view or add a comment, sign in
-
Learning 🐍: 🔹 Python Built-in Functions: ord(), chr(), and bin() When working with characters and numbers in Python, these three built-in functions are very useful! 🔸bin() Function 👉 bin() converts an integer number into binary format. 🔸ord() Function 👉 ord() returns the ASCII (or Unicode) value of a given character. 🔸 2️⃣ chr() Function 👉 chr() returns the character for a given ASCII (or Unicode) value. 💡 ord() and chr() are opposite functions. 🔥 Quick Summary Function Purpose ord() Character ➝ ASCII value chr() ASCII value ➝ Character bin() Integer ➝ Binary string #Python #PythonProgramming #DataAnalytics #CodingJourney
To view or add a comment, sign in
-
Learning Python one concept at a time 🐍 Python Basics — Day 7🐍 Python Data Collections — Part 2 🐍 📌 Concept: Tuple & Set Where data starts getting organized 📦 🔹 Tuple → ordered & unchangeable 🔹 Set → unordered & unique values only The key lesson beginners miss 👇 Tuples protect data. Sets remove duplicates. Understanding when to use tuple vs set helps you write cleaner, smarter code. Sharing simple explanations + practice questions to learn by doing ✍️ 💬 Comment “DONE” after solving the practice questions If you’re learning Python step by step, let’s connect 🤝 #Python #PythonBasics #Learning #Beginners #Upskilling #TechLearning #CareerGrowth #AI
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