{"id":23956913,"url":"https://github.com/kissssu/basic-python-projects","last_synced_at":"2026-06-17T17:33:23.026Z","repository":{"id":269155070,"uuid":"906582262","full_name":"kissssu/Basic-Python-Projects","owner":"kissssu","description":"This Python repository provides beginner-friendly and intermediate-level projects to practice programming skills or learn Python basics.","archived":false,"fork":false,"pushed_at":"2025-02-18T00:45:28.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-18T01:28:16.691Z","etag":null,"topics":["python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kissssu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-21T10:00:01.000Z","updated_at":"2025-02-18T00:45:31.000Z","dependencies_parsed_at":"2024-12-21T11:21:08.490Z","dependency_job_id":"985ab42c-1806-4013-9124-9334049e2994","html_url":"https://github.com/kissssu/Basic-Python-Projects","commit_stats":null,"previous_names":["kissssu/basic-python-projects"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kissssu%2FBasic-Python-Projects","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kissssu%2FBasic-Python-Projects/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kissssu%2FBasic-Python-Projects/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kissssu%2FBasic-Python-Projects/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kissssu","download_url":"https://codeload.github.com/kissssu/Basic-Python-Projects/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240466796,"owners_count":19805862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python"],"created_at":"2025-01-06T16:32:15.936Z","updated_at":"2026-06-17T17:33:18.006Z","avatar_url":"https://github.com/kissssu.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python Basic Projects\nThis repository contains beginner-friendly and intermediate-level Python projects, perfect for practicing programming skills or learning Python basics. Each project is designed to be simple yet insightful, covering various Python concepts like loops, conditionals, functions, and basic file handling.\n\n\n# Project Structure\nThe projects are divided into two levels: Beginner and Intermediate. Each project is self-contained and has clear instructions for use.\n\n\n# Level 1: Beginner-Friendly Projects\n\n#### Number Guessing Game\nDescription: A game where the computer generates a random number, and the user guesses until they find the correct answer. Feedback like \"too high\" or \"too low\" helps guide the player.\nConcepts Used: Random number generation, loops, conditionals.\n\n#### Simple Calculator\nDescription: Performs basic arithmetic operations (addition, subtraction, multiplication, and division) on two numbers provided by the user.\nConcepts Used: Functions, user input, mathematical operations.\n\n#### Temperature Converter\nDescription: Converts temperatures between Celsius and Fahrenheit based on user input.\nConcepts Used: Input validation, basic mathematical formulas, conditionals.\n\n#### Mad Libs Generator\nDescription: A fun program where users input words (nouns, verbs, adjectives), which are then integrated into a pre-defined story template.\nConcepts Used: String manipulation, user input, formatting.\n\n#### Basic Text-Based Adventure Game\nDescription: Creates a simple interactive story where the player makes decisions that affect the outcome.\nConcepts Used: Conditional statements, user input, storytelling.\n\n\n# Level 2: Intermediate Projects\n\n#### Rock-Paper-Scissors Game\nDescription: The classic game against a computer AI. The winner is determined based on game rules (rock beats scissors, scissors beat paper, paper beats rock).\nConcepts Used: Randomization, conditionals, loops.\n\n#### Basic Quiz Game\nDescription: A multiple-choice quiz that evaluates the user's knowledge and calculates their score.\nConcepts Used: Lists, dictionaries, loops, conditionals.\n\n#### Password Generator\nDescription: Generates secure passwords of user-specified lengths, with options for including special characters, numbers, and uppercase/lowercase letters.\nConcepts Used: Randomization, string manipulation.\n\n#### Simple Text Analyzer\nDescription: Analyzes a given text to count words, characters, sentences, and calculate the average word length.\nConcepts Used: String processing, loops, basic statistics.\n\n#### Basic To-Do List App\nDescription: A simple text-based to-do list manager that allows users to add, remove, and mark tasks as completed.\nConcepts Used: Lists, input/output, conditionals.\n\n\n## Requirements\nThis repository includes a requirements.txt file that lists any necessary dependencies. To install these dependencies, use:\n\n```bash\npip install -r requirements.txt\n```\n\nGetting Started\nClone the repository:\n```bash\ngit clone https://github.com/kissssu/Basic-Python-Projects.git\ncd python-basic-projects  \n```\n\nInstall dependencies (if any):\n```bash\npip install -r requirements.txt  \n```\n\nNavigate to the project folder of your choice and run the respective Python file:\n```bash\npython project_name.py  \n```\n\n# Why These Projects?\n\nBeginner-Friendly: Ideal for newcomers to Python or programming in general.\nIntermediate-Level Challenge: Helps bridge the gap between beginner concepts and more advanced programming techniques.\nSkill Development: Covers fundamental concepts like control flow, data structures, file handling, and user input.\n\n## Updates/Changes\n\nThis section summarizes the general updates and improvements made to the Python projects in this repository.  These changes apply across multiple projects and focus on enhancing code quality, robustness, and user experience.\n\n*   **Input Validation:**  A core focus has been adding robust input validation.  This includes checking for correct data types (e.g., integers, floats), valid ranges, and preventing common errors like division by zero.  This makes the programs more resilient to unexpected user input.\n*   **Error Handling:**  `try-except` blocks have been implemented to handle potential errors gracefully. This prevents program crashes and provides informative messages to the user.\n*   **Loops for Multiple Actions:**  Loops have been added to allow users to perform multiple operations (calculations, conversions, games, etc.) without restarting the program. This significantly improves usability.\n*   **Clearer Output:**  Output messages have been refined to be more informative and user-friendly.  Formatting has also been improved for better readability (e.g., rounding floating-point numbers).\n*   **Code Style Improvements:**  Code style has been enhanced for better readability and maintainability. This includes using more Pythonic idioms, clearer variable names, and simplifying logic where possible.\n*   **Handling Edge Cases:**  The programs now handle various edge cases, such as empty lists, division by zero, and invalid input, ensuring they function correctly under a wider range of conditions.\n*   **Continue/Exit Prompts:**  Users are now prompted after each action to continue or exit the program, providing more control over the program's flow.\n\n# Contributing\nFeel free to fork this repository and submit pull requests with improvements or additional features. Contributions are always welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkissssu%2Fbasic-python-projects","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkissssu%2Fbasic-python-projects","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkissssu%2Fbasic-python-projects/lists"}