Intensive Python session successfully completed! Today was a very productive day in my programming learning journey. I completed five tasks that allowed me to better understand input handling, regular expressions (re), and mathematical operations. The most satisfying part was moving from simple code rewriting to analyzing what's happening "under the hood" (e.g., why importing re is necessary for the search function to work). Every NameError I resolve is a valuable lesson. Step by step, I'm building a solid foundation. What resources do you recommend for learning Python to start with? #python #programming #codingjourney #developerinthemaking
Anna Grabiec’s Post
More Relevant Posts
-
💻 Building Logic with Python Created a simple calculator program in Python that performs basic arithmetic operations (addition, subtraction, multiplication, and division) based on user input. A small but useful exercise to practice conditional statements, user input, and program logic in Python. 🚀 #Python #Programming #Coding #PythonLearning #BeginnerProjects Lovely Professional University (LPU)
To view or add a comment, sign in
-
-
Recently, I spent some time understanding List Comprehensions in Python, and I found them to be a very useful feature for writing cleaner and more efficient code. One thing I appreciate about Python is how it allows developers to simplify tasks that would normally require multiple lines of code. Features like list comprehensions help make code more readable and concise when used properly. Learning these small but powerful concepts is helping me understand why Python is widely used in areas like software development, data science, and machine learning. Currently exploring more Python concepts and improving my programming skills step by step. #Python #Programming #Coding #Learning #SoftwareDevelopment
To view or add a comment, sign in
-
💻 My First Python Logic Project Taught Me More Than I Expected This week, I built a simple Grade Calculator in Python as I strengthen my programming foundation. It takes a score as input and automatically assigns a grade with feedback. It may seem small, but here’s what I learned: • How conditional statements really work • Why structuring logic properly matters • The importance of testing different cases Writing the code wasn’t the hardest part — thinking through the logic step by step was where the real learning happened. I’m focused on building strong fundamentals before diving deeper into AI and advanced systems. Small steps. Real progress. Next goal: Add more functionality and improve the logic. 💡 For those who started with Python: what was the first project that helped programming finally “click” for you? I’d love to hear your experiences. #Python #ComputerScience #LearningInPublic #BeginnerProgrammer #TechJourney
To view or add a comment, sign in
-
📚 Continuing my Python learning journey Today, I took a deeper dive into functions and iteration, moving beyond basic loops to focus on readability and efficiency. 🔑 Key concepts I revisited: ● Smart Iteration – Using enumerate() to handle index-value pairs and zip() to combine data from multiple lists seamlessly. ●The Power of Unpacking – Practicing tuple unpacking (especially with dictionary.items()) to keep code concise and readable. ●Functions – Strengthening my understanding of positional, keyword, and default arguments to write more flexible and robust functions. The transition from manual coding to using these Python tools makes a big difference in how clean, readable, and maintainable the code becomes. Step by step, I’m building a stronger foundation in Computer Science and Python programming. 🚀 #Python #Programming #LearningJourney #WomenInTech #CleanCode #ComputerScience
To view or add a comment, sign in
-
-
Most beginners think a variable is a complicated concept. It is not. A variable is just a labelled box. 📦 name = 'Haris' This means: → Create a box → Put a label on it that says 'name' → Put 'Haris' inside the box That is it. age = 20 → a box labelled age holding 20 score = 98.5 → a box labelled score holding 98.5 Python is just organizing boxes. Once I understood this, everything else made sense. I am currently on Week 1 of documenting my Python journey publicly. If you are learning too — follow along. 🧵 What concept confused you most when you started programming? 👇 #Python #Programming #LearnPython #BuildingInPublic #AI #MachineLearning #100DaysOfCode #TechPakistan
To view or add a comment, sign in
-
Teerop Launches Python Complete Course .. First Video is Live! We are excited to announce that the first video of our Python Complete Course is now live 🎥 At Teerop, our mission is to help developers and students learn programming, AI, and build real-world projects with a clear and practical approach. 📌 In this first video, you’ll learn: ● Introduction to Python ● History & origin of Python ● Why Python is one of the most in-demand languages ● Real-world applications of Python ● Step-by-step installation of Python & VS Code ● Writing your first program (Hello World) This course is designed to take you from beginner to advanced level, with hands-on learning and practical projects. 🔗 Watch now: https://lnkd.in/d2F6kijU Follow Teerop for more upcoming tutorials on: ● Python ● Machine Learning ● AI & Deep Learning ● Real-world development projects #Teerop #Python #Programming #LearnPython #AI #MachineLearning #Coding #Developers #TechEducation
Python Full Course 2026 #1 | Introduction, Installation & First Program
https://www.youtube.com/
To view or add a comment, sign in
-
In Harvard's CS50. One thing I genuinely appreciate about the course is the transition from C to Python. Starting with C forces you to understand the fundamentals of programming — memory, data structures, and how things work at a lower level. When the course later introduces Python, you suddenly realize how much abstraction and productivity a higher-level language gives you. That transition makes Python feel not just easier, but more meaningful, because you understand what’s happening behind the scenes. CS50 does a great job teaching not just syntax, but the thinking process behind programming. On to the Python problem sets. 🚀 #CS50 #Python #Programming #ComputerScience #LearningInPublic
To view or add a comment, sign in
-
-
🔄 Type casting – Practical implementation Completed a hands-on Jupyter Notebook focused on type casting in Python and its practical applications in real-world scenarios. This exercise enhanced my understanding of how data can be converted between different types to ensure smooth and efficient program execution. Key learnings: 1) Understanding type casting and its importance in Python programming 2) Working with implicit and explicit type conversion techniques 3) Converting between numeric, string, and boolean data types 4) Handling data accurately by applying appropriate type conversions 5) Writing more flexible and error-free code using type casting concepts This milestone was achieved under the guidance of KODI PRAKASH SENAPATI Sir, whose structured teaching and clear explanations made these concepts easy to grasp and implement. Continuing to build strong Python fundamentals step by step 🚀 #Python #TypeCasting #ProgrammingBasics #SoftwareDevelopment #Upskilling
To view or add a comment, sign in
-
Learn Python Programming in One Page (2026 Guide) | one page learning Python is one of the most in-demand skills today, powering AI, Data Science, Automation, and Web Development. But most tutorials are long and overwhelming. So we simplified everything into a one-page guide covering all the essentials you actually need to start. Perfect for beginners, students, and professionals looking to upskill quickly. https://lnkd.in/gfctZtia follow Scooplist to get more updates on this one page learning series. #python #learnpython #coding #datascience #AI #programming #scooplist #genai
To view or add a comment, sign in
-
What I learned today while practicing Python Today’s learning session did not feel like a big achievement. There was no finished project, no breakthrough moment, just small pieces slowly starting to make sense. While practicing Python, I noticed how much programming is less about memorizing syntax and more about learning how to think patiently. A simple problem that looked easy at first took much longer than expected, not because it was difficult, but because my approach was unclear. I realized that coding often teaches persistence more than technology. You try one solution, it fails. You try again, change your logic, read errors carefully, and slowly the program begins to work. These small moments do not look impressive from the outside, but they quietly build confidence. Right now, my focus is not speed but understanding. One concept at a time, one problem at a time. For those learning programming, what helped you the most in the beginning: consistency or curiosity? #Python #CodingJourney #ComputerScience #LearningInPublic #TechStudents
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