Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 random

random_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)

_________________________________________________