Skip to content

Latest commit

 

History

History
145 lines (122 loc) · 13 KB

File metadata and controls

145 lines (122 loc) · 13 KB

100_Days_Of_Code_(Python)

#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.

  1. Used the Print & Input Function, & Used a Variable.
  2. Learned about Commenting \n - Backslash.
  3. Learned that \n brings 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.

  1. Applied the f string(found it really convenient)
  2. Reminded me that inputs are in string data type and has to be converted into float/integers before dong any calculations
  3. 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.

  1. Applied ASCII Art (figures made by numbers and symbols) via: https://ascii.co.uk/art
  2. Learned if/elif/else statements & nested if/elif/else & multiple ifs
  3. Reminded me that indentation is important in python
  4. Had fun! 😆