I recently built a small Python project called **US State Guessing Game** 🇺🇸🐍 This project is part of my Python learning journey. In this game, a blank map of the United States appears and the user has to guess the names of all 50 states. When the guess is correct, the state name appears on the map in the correct location. Through this project, I learned: 📌 How to work with CSV files using Pandas 📌 How to use Turtle for graphics 📌 How to take user input and use loops 📌 How to upload projects on GitHub using Git This was a really fun project and helped me understand how real Python projects work, not just basic programs. You can check the project here: 🔗 https://lnkd.in/db7jnDt7 I am continuously learning and building more projects. More projects coming soon 🚀 #Python #PythonProjects #GitHub #Coding #Programming #Developer #SoftwareDeveloper #SoftwareDevelopment #StudentDeveloper #BTech #EngineeringStudent #CodeNewbie #LearnToCode #CodingJourney #100DaysOfCode #Tech #TechStudent #Developers #OpenToWork #Projects #BuildInPublic #PracticeMakesPerfect #FutureDeveloper
More Relevant Posts
-
🐍 Day 4 of Learning Python Today I learned one of the most important (and unique) concepts in Python — **Indentation**. Unlike other languages, Python doesn’t use {} to define blocks of code. Instead, it uses proper spacing (indentation) to structure the program. 👉 Example: ``` if True: print("This is correctly indented") if True: print("This will throw an error ❌") ``` Even a small mistake in spacing can break your code! 💡 Key Takeaways: * Indentation defines code blocks * Consistency is important (usually 4 spaces) * Makes code clean and highly readable Coming from a PHP background, this feels different but also very intuitive once you get used to it. Excited to keep learning more 🚀 #Python #Coding #LearningJourney #100DaysOfCode #Developers #Programming
To view or add a comment, sign in
-
Write Python Code Online Anywhere with Programiz | Fast & Easy | NaseebCodeStudio Master Python programming on the go with this quick guide on how to write Python code online using the powerful Programiz online editor. In this video, you'll discover how to run your scripts instantly in a no-login environment, allowing you to start coding without the hassle of account creation or software installation. Whether you are a beginner or an expert, this tool provides built-in Python tutorials to help you learn syntax and logic directly within the browser. Perfect for students and developers who need a fast, reliable, and free online Python compiler, this workflow ensures you can practice coding anytime, anywhere. #Python #LearnPython #Programiz #OnlineCoding #PythonProgramming #CodingForBeginners #code #PythonTutorial #CodeOnline #NaseebCodeStudio
To view or add a comment, sign in
-
Python Tip for Beginners: Lists vs Tuples - List = Mutable (can change) - Tuple = Immutable (cannot change) Why does this matter? Because choosing the right data structure improves performance and code quality. Small concepts = Big impact #Python #Programming #CodingTips #Developers #ComputerScience #Learning #Tech
To view or add a comment, sign in
-
🚀 Exploring Python Loops & Control Statements: The Core of Logical Programming While learning Python, I realized how important loops and control statements are for writing efficient and logical code. Here’s a quick summary of what I understood: 🔹 For Loop Used to iterate over a sequence like lists, tuples, or strings. Best when the number of iterations is known. 🔹 While Loop Runs as long as a condition is true. Useful when the number of iterations isn’t fixed. 🔹 If, Elif, Else Helps in decision-making by executing code based on conditions. 🔹 Break Statement Used to exit a loop immediately when a condition is met. 🔹 Continue Statement Skips the current iteration and continues with the next one. 🔹 Pass Statement Acts as a placeholder when no action is needed but syntax requires a statement. 💡 These concepts are helping me build stronger programming logic step by step. 📌 Always open to learning more and improving! #Python #LearningJourney #Programming #Coding #Loops #ControlStatements
To view or add a comment, sign in
-
-
Your Python journey starts here 🚀 Confused about what to learn and in what order? Don’t worry — we’ve got you covered with a complete roadmap from basics to advanced concepts 💻 Start with syntax, master data structures, understand OOP, and explore powerful libraries like NumPy & Pandas. Step by step, you’ll build the skills needed to become industry-ready in 2026. 📍 Learn smarter with CodeSquadz 📞 78-79-33-22-11 🌐 www.codesquadz.com #Python #CodingJourney #LearnPython #TechSkills #Programming #Developers #CodeSquadz #FutureReady #Upskill
To view or add a comment, sign in
-
-
Day 1 of my Python & DSA learning journey 🚀 Today I learned about Functions in Python. ❓ What is a Function? A function is a reusable block of code that performs a specific task. Instead of writing the same code again and again, we create a function and call it whenever we need it. 📌 Why functions are important: • They make code reusable • They organize the program • They reduce repetition in code 💻 Example in Python def add_numbers(a, b): result = a + b return result print(add_numbers(5, 3)) Here add_numbers() is a function that takes two inputs (a and b) and returns their sum. Output: 8 🔥 Question for developers: What was the first function you created when learning programming? #Python #DSA #Coding #Programming #LearningInPublic #100DaysOfCode
To view or add a comment, sign in
-
🧠 Python Trick Question x = (1, 2, 3) x[0] = 10 What will happen? 🤔 A: (10, 2, 3) B: Error C: None D: (1, 2, 3) 👇 Think before scrolling 👉 Answer: Error Because tuples are immutable. 🚀 Basics clear = strong foundation #Python #CodingChallenge #Developers #Programming #Learning
To view or add a comment, sign in
-
-
Today, I worked on an important concept in Python programming — Functions 🧠💻 Functions are more than just code blocks… they are the building blocks of clean, efficient, and reusable programs. ✨ What I practiced today: 🔹 Created a welcome_message() function to print messages multiple times 🔹 Built an inspire() function to share motivation along with my name 🔹 Designed a good_morning() function for personalized greetings 💡 Key Learning: Functions help us avoid repetition and make our code more organized and readable. 📌 Why functions matter? ✔️ Code Reusability – Write once, use multiple times ✔️ Simpler Programs – Break complex problems into smaller parts 🌱 Every small step like this is helping me grow stronger in Python and move closer to becoming a skilled developer. 💬 “Learning comes from practicing.” #Python #CodingJourney #WomenInTech #LearningByDoing #ProgrammingBasics #FutureDeveloper
To view or add a comment, sign in
-
🧠 Understanding self in Python (Simple Explanation) One of the most important concepts in Python classes is this: 👉 self refers to the current object. It’s how an object keeps track of its own data. 💡 Think of it like this: Every time you create an object from a class, that object needs a way to: store its own values access its own data perform actions using its own information That’s exactly what self does. 🔑 Why is self important? It connects data to a specific object It allows multiple objects to have different values It helps methods know which object they are working on 🎯 In simple words: self = “this object” It keeps everything organized and separate 🚀 Once you understand self, classes become much easier to work with. It’s a small keyword with a big role! #Python #Programming #Coding #Beginners #LearnToCode #SoftwareDevelopment
To view or add a comment, sign in
-
💻 Python Practice Programs 🚀 Here are some simple yet important Python programs every beginner should know 👇 🔹 Program 4: Swap two variables 🔹 Program 5: Generate a random number 🔹 Program 6: Convert kilometers to miles 🔹 Program 7: Convert Celsius to Fahrenheit These basic programs help build a strong foundation in Python by improving logic, understanding of variables, and real-world problem solving. 📌 Consistency is the key — small steps every day lead to big results. #Python #Programming #Coding #DataScience #Learning #Beginners #Tech #DeveloperJourney #100DaysOfCode
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