Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iankitnegi/100daysofcode
💯 100 Days of Code: Python Challenge! 🚀 Daily progress, projects, and key takeaways as I learn Python step-by-step. Consistency > Perfection! #100DaysOfCode
https://github.com/iankitnegi/100daysofcode
100daysofcode 100daysofpython python
Last synced: 13 days ago
JSON representation
💯 100 Days of Code: Python Challenge! 🚀 Daily progress, projects, and key takeaways as I learn Python step-by-step. Consistency > Perfection! #100DaysOfCode
- Host: GitHub
- URL: https://github.com/iankitnegi/100daysofcode
- Owner: iankitnegi
- Created: 2024-10-11T15:26:01.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T06:46:02.000Z (3 months ago)
- Last Synced: 2024-10-21T09:31:45.212Z (3 months ago)
- Topics: 100daysofcode, 100daysofpython, python
- Language: Python
- Homepage: https://www.udemy.com/course/100-days-of-code/
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 💯 100 Days of Code: Python Challenge
This repository documents my journey of learning **Python** in 100 days! 🚀 Each day, I tackle new concepts, work on projects, and share my progress. From mastering the basics to building real-world applications, this challenge is all about consistency, growth, and having fun with code!
### 🌟 What's Inside:
- Daily progress updates
- Hands-on projects (like Rock-Paper-Scissors 🎮)
- Code snippets & challenges
- Reflections and key takeaways### 📅 Goal:
Learn Python step-by-step, practice daily, and build confidence to apply it in real-world scenarios!### 🧩 Quick Revision:
import randomrandom_int = random.randint(1,10)
print(random_int)random_decimal_0_to_1 = random.random() *10
print(random_decimal)random_float = random.uniform(0,10)
print(random_float)mylist = ["apple", "banana", "cherry"]
print(random.choice(mylist))mylist = ["apple", "banana", "cherry"]
random.shuffle(mylist)_________________________________________________