#100_Days_Of_Code - Day to Day challenge to complete 100 days by making 1 Project every day using Python. Track My Progress in log_v2
This repository will store all the related Projects & Links to the Projects. If you are intrested in any code files, please run the code in an IDE for Python, Although i recommend running it in Repl_It as some modules are imported based on the website.
Below is my summary of what I've learned everyday & the link to fork the project in My_Repl.it - (Online IDE):
Day 1 - Band_Name_Generator:
A Band_Name_Generator from the input of users of their Country & a random Pet Name.
- Used the Print & Input Function, & Used a Variable.
- Learned about Commenting
\n - Backslash. - Learned that
\nbrings the Cursor/Content to the next line in the same Print Function.
Day 2 Tip_Calculator:
Created a simple calculator that takes in input of the total bill, percentage of tips to be given and the amount of people to split the bill.
- Applied the f string(found it really convenient)
- Reminded me that inputs are in string data type and has to be converted into float/integers before dong any calculations
- Reminded me how to round off with a specified decimal number
rounding_off=Round(2.666666,2)= 2.66
Day 3 (https://repl.it/@LeeRen1/D36-Treasure-islandPOTD):
Created a storytelling like treasure island adventure where each steps u take lead to different outcomes.
- Applied ASCII Art (figures made by numbers and symbols) via: https://ascii.co.uk/art
- Learned if/elif/else statements & nested if/elif/else & multiple ifs
- Reminded me that indentation is important in python
- Had fun! 😆