Day 13 of #100DaysOfPython
I used to manually organize files like a neat freak, until I made Python do it for me.
Built a File Organizer Tool that sorts files by type: Images, Docs, Videos, etc.
#Automation. Code once. Use forever.
#Python@QuintessaCodes@sir_triumph
day9
All i did 2day was learn how 2add color 2my output, and i really love it, i'm gonna be coloring everything now. So for day 9 challenge, i refurbished day 8 codes and added some colors _innit_ simply by adding:
from colorama import init, Fore, Style
init(autoreset=True)
🚀 Day 3 of #100DaysOfCode Challenge
I built a Treasure Island Game. Concept learnt include:
➡ conditional statement: if/else, if/elif/else, nested if/else and multiple ifs
➡ logical operators: and, or, not
➡ comparison operators: >, <, >=, <=, ==, !=
🚀 Day 2 of #100DaysOfCode Challenge
I built a Tip Calculator. Concept learnt include:
➡️ data types: strings, integers, floats, boolean
➡️ arithmetic operation
➡️ type conversion/casting using int(), float(), str(), bool() functions
➡️ type checking using type() function
🚀 Day 1 of #100DaysOfCode Challenge
I built a startup name generator. Concept learnt include:
➡️ variables naming dos and don'ts
➡️ strings: strings of characters.
String Concatenation done with the + sign
New lines created with a \ and the letter n
✨ Features:
🔹 Addition, Subtraction, Multiplication, Division
🔹 Handles divide-by-zero with error messages
🔹 Stores every operation in a neat history log
🔹 Built with functions, input validation & formatting
Math + Memory = 🔥 Productivity Boost
🧾 Key features:
Add expenses with descriptions
View all entries
Calculate total & average spent
Handles invalid inputs with try-except
Stores data using a list of dictionaries