{"id":20594924,"url":"https://github.com/jazaltron10/alx_be_python","last_synced_at":"2026-04-21T01:02:08.557Z","repository":{"id":244991198,"uuid":"816921188","full_name":"Jazaltron10/alx_be_python","owner":"Jazaltron10","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-16T13:21:43.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-06T14:53:24.378Z","etag":null,"topics":["exceptions-and-error-handling","oop","python","shell","unittesting"],"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/Jazaltron10.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-06-18T16:47:54.000Z","updated_at":"2024-07-16T13:21:46.000Z","dependencies_parsed_at":"2024-06-18T22:15:29.018Z","dependency_job_id":"d858cf11-0265-4063-8a6d-b1655c9ad4f8","html_url":"https://github.com/Jazaltron10/alx_be_python","commit_stats":null,"previous_names":["jazaltron10/alx_be_python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Jazaltron10/alx_be_python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jazaltron10%2Falx_be_python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jazaltron10%2Falx_be_python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jazaltron10%2Falx_be_python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jazaltron10%2Falx_be_python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jazaltron10","download_url":"https://codeload.github.com/Jazaltron10/alx_be_python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jazaltron10%2Falx_be_python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32072323,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["exceptions-and-error-handling","oop","python","shell","unittesting"],"created_at":"2024-11-16T08:10:49.070Z","updated_at":"2026-04-21T01:02:08.522Z","avatar_url":"https://github.com/Jazaltron10.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌟 Python Introduction Tasks 🌟\n\nWelcome to the **Python Introduction Tasks** repository! This collection of Python scripts is designed to help you practice basic arithmetic operations, variable assignments, user input handling, and simple calculations. Let's get started!\n\n---\n\n## 📋 Tasks Overview\n\n### 🧮 0. Basic Arithmetic Exercise\n**Objective**: Practice basic arithmetic operations in Python.\n\n**Instructions**:\n- Create `basic_operations.py`.\n- Define `number1` and `number2` with values `10` and `5`.\n- Perform addition, subtraction, and multiplication.\n- Print results in the format: `[operation] of [number1] and [number2] is [result]`.\n\n**Expected Output**:\n```plaintext\nAddition of 10 and 5 is 15\nSubtraction of 10 and 5 is 5\nMultiplication of 10 and 5 is 50\n```\n\n### 💰 1. Simple Interest Calculator\n**Objective**: Calculate simple interest using arithmetic operations.\n\n**Instructions**:\n- Create `simple_interest.py`.\n- Define `principal = 1000`, `rate = 0.05`, `time = 3`.\n- Calculate simple interest: `I = P * R * T`.\n- Print result: `The simple interest is: [interest]`.\n\n**Expected Output**:\n```plaintext\nThe simple interest is: 150.0\n```\n\n### 📐 2. Calculate the Area of a Rectangle\n**Objective**: Calculate the area of a rectangle using length and width.\n\n**Instructions**:\n- Create `rectangle_area.py`.\n- Define `length = 10` and `width = 5`.\n- Calculate area: `Area = length * width`.\n- Print result: `The area of the rectangle is: [area]`.\n\n**Expected Output**:\n```plaintext\nThe area of the rectangle is: 50\n```\n\n### ⏳ 3. Convert Hours to Seconds\n**Objective**: Convert hours to seconds.\n\n**Instructions**:\n- Create `hours_to_seconds.py`.\n- Define `hours = 2`.\n- Calculate seconds: `seconds = hours * 3600`.\n- Print result: `[hours] hour(s) is [seconds] seconds`.\n\n**Expected Output**:\n```plaintext\n2 hour(s) is 7200 seconds\n```\n\n### 👶 4. User Input Age Calculator\n**Objective**: Calculate user's age in a future year based on current age input.\n\n**Instructions**:\n- Create `future_age_calculator.py`.\n- Prompt user for current age.\n- Calculate age in 2050 (assuming current year is 2023).\n- Print result: `In 2050, you will be [age] years old`.\n\n**Expected Output**:\n```plaintext\nIn 2050, you will be [age] years old\n```\n\n### 💸 5. Personal Finance Calculator (Advanced)\n**Objective**: Calculate monthly savings and project annual savings with interest.\n\n**Instructions**:\n- Create `finance_calculator.py`.\n- Prompt user for monthly income and expenses.\n- Calculate monthly savings: `Monthly Savings = Income - Expenses`.\n- Project annual savings with 5% interest.\n- Print results.\n\n**Expected Output**:\n```plaintext\nYour monthly savings are $[savings].\nProjected savings after one year, with interest, is: $[projected_savings].\n```\n\n---\n\n## 📂 Repository Structure\n\n```plaintext\nalx_be_python/\n└── python_introduction/\n    ├── basic_operations.py\n    ├── simple_interest.py\n    ├── rectangle_area.py\n    ├── hours_to_seconds.py\n    ├── future_age_calculator.py\n    └── finance_calculator.py\n```\n\n---\n\n## 🚀 How to Run\n\nExecute each script using Python 3:\n```bash\npython3 \u003cscript_name\u003e.py\n```\n\n---\n\n## 📜 License\n\nThis project is licensed under the MIT License.\n\n---\n\n**Happy Coding!** 🎉\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjazaltron10%2Falx_be_python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjazaltron10%2Falx_be_python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjazaltron10%2Falx_be_python/lists"}