{"id":24782319,"url":"https://github.com/itzsandeepshrma/Python-30-Days-Challenge","last_synced_at":"2025-10-12T05:31:26.707Z","repository":{"id":271766920,"uuid":"914504648","full_name":"itzsandeepshrma/Python-15-Days-Challenge","owner":"itzsandeepshrma","description":"Python 15 Day's Challenge ","archived":false,"fork":false,"pushed_at":"2025-01-25T17:33:29.000Z","size":68,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-25T18:25:48.947Z","etag":null,"topics":["code","coding","github","python","python-3","python-library","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itzsandeepshrma.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-01-09T18:17:58.000Z","updated_at":"2025-01-25T17:33:33.000Z","dependencies_parsed_at":"2025-01-10T10:47:11.100Z","dependency_job_id":null,"html_url":"https://github.com/itzsandeepshrma/Python-15-Days-Challenge","commit_stats":null,"previous_names":["itzsandeepshrma/python-15-days-challenge"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzsandeepshrma%2FPython-15-Days-Challenge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzsandeepshrma%2FPython-15-Days-Challenge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzsandeepshrma%2FPython-15-Days-Challenge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itzsandeepshrma%2FPython-15-Days-Challenge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itzsandeepshrma","download_url":"https://codeload.github.com/itzsandeepshrma/Python-15-Days-Challenge/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236169083,"owners_count":19106105,"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":["code","coding","github","python","python-3","python-library","python3"],"created_at":"2025-01-29T11:16:47.658Z","updated_at":"2025-10-12T05:31:26.701Z","avatar_url":"https://github.com/itzsandeepshrma.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python 30 Day's Challenge  \n![images (10)](https://github.com/user-attachments/assets/502a98d3-22c0-40ae-82cf-aca8c6d8d896)  \n\n--- \n\n\n### **Chapter 1: Modules, Comments \u0026 pip**  \n- Writing the first Python program  \n- Understanding modules  \n- Using pip for package management  \n- Using Python as a calculator  \n- Comments in Python  \n- **[Modules, Comments \u0026 pip](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%201)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%201/Practice)**  \n\n### **Chapter 2: Variables and Data Types**  \n- Defining variables  \n- Different data types in Python  \n- Rules for choosing an identifier  \n- Operators in Python  \n- Using `type()` function and typecasting  \n- `input()` function  \n- **[Variables and Data Types](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%202)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%202/Practice)**  \n\n### **Chapter 3: Strings**  \n- String slicing  \n- Slicing with skip values  \n- String functions  \n- Escape sequence characters  \n- **[Strings](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%203)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%203/Practice)**  \n\n### **Chapter 4: Lists and Tuples**  \n- List indexing  \n- List methods  \n- Tuples in Python  \n- Tuple methods  \n- **[Lists and Tuples](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%204)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%204/Practice)**  \n\n### **Chapter 5: Dictionary \u0026 Sets**  \n- Properties of dictionaries  \n- Dictionary methods  \n- Sets in Python  \n- Properties and operations on sets  \n- **[Dictionary \u0026 Sets](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%205)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%205/Practice)**  \n\n### **Chapter 6: Conditional Expression**  \n- `if`, `else`, and `elif` statements  \n- Relational and logical operators  \n- **[Conditional Expression](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%206)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%206/Practice)**  \n\n### **Chapter 7: Loops in Python**  \n- `while` loop  \n- `for` loop  \n- `range()` function  \n- `for` loop with `else`  \n- Break, continue, and pass statements  \n- **[Loops in Python](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%207)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%207/Practice)**  \n\n### **Chapter 8: Functions \u0026 Recursions**  \n- Defining and calling functions  \n- Recursion in Python  \n- **[Functions \u0026 Recursions](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%208)**  \n- **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%208/Practice)**  \n\n## **Chapter 9: File I/O**\n  - Reading and writing files\n  - Working with directories\n  - **[File I/O](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%209)**\n  - **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%209/Practice)**\n\n## **Chapter 10: Object-Oriented Programming**\n  - Classes and objects\n  - Methods and attributes\n  - **[Object-Oriented Programming](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2010)**\n  - **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2010/Practice)**\n\n## **Chapter 11: Inheritance \u0026 More on OOPs**\n  - Inheritance\n  - Polymorphism\n  - Operator overloading\n  - **[Inheritance \u0026 More on OOPs](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2011)**\n  - **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2011/Practice)**\n\n## **Chapter 12: Advanced Python 1**\n  - Newly added features in Python\n  - Walrus operator\n  - Advanced type hints\n  - Match case\n  - Dictionary merge \u0026 update operators\n  - Exception handling enhancements\n  - Global keyword and enumerate function\n  - List comprehensions\n  - **[Advanced Python 1](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2012)**\n  - **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2012/Practice)**\n\n## **Chapter 13: Advanced Python 2**\n  - Virtual environments\n  - Lambda functions\n  - String methods: `join` and `format`\n  - Functional programming: `map`, `filter`, and `reduce`\n  - **[Advanced Python 2](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2013)**\n  - **[Practice Set](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Chapter%2013/Practice)**\n  \n---\n\n### Project  \n- **Project 1: [Snake Water Gun Game](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Project%201)**  \n  - A fun and interactive game where the player competes against the computer in a variation of Rock-Paper-Scissors.\n \n---\n\n- **Project 2: [Guess The Number](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Project%202)**\n  - A guessing game where the player tries to guess a randomly generated number within a certain range.\n\n- **Mega Project 1: [Jarvis Virtual Assistant](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Mega%20Project%201%20-%20Jarvis)**\n  - A voice assistant application capable of performing various tasks such as playing music, and providing information.\n- **Mega Project 2: [AI AutoReply Bot](https://github.com/itzsandeepshrma/Python-30-Days-Challenge/tree/main/Mega%20Project%202%20-%20AI%20AutoReply%20Bot)**\n  - An AI-based bot designed to automatically reply to messages, enhancing communication efficiency.\n\n ---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitzsandeepshrma%2FPython-30-Days-Challenge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitzsandeepshrma%2FPython-30-Days-Challenge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitzsandeepshrma%2FPython-30-Days-Challenge/lists"}