Hello and welcome to my project~!
Well, I say that, but the entire purpose behind this jam sessions
repository is that it becomes a basket for any and all things I do that help develop my programming skills(specifically python).
This will be where all my practice gets shown off, essentially.
All of my sessions will be posted into 3 categories:
-
mini_project_sessions: this will a collection of small projects to test what I've been learning.
-
practice_sessions: a collection of notes and other miscellaneous things.
-
junk_sessions: as stated, it's a collection of junk. Don't worry about it.
If you're curious, I'll do my best to regarly update this readme file with my progress. All feedback is welcome.
- logplan_module - this is a module with 25 functions that could be used in the logistics planning department(especially packaging).
# 7.
def tot_inserts_per_day(annual_demand, lot_size, inserts_per_bin, total_production_days = 365):
"""
Calculates the total inserts required per day
:param annual_demand: total parts needed for 1 year(expected to be an integer)
:param lot_size: lot size of a part(expected to be an integer)
:param inserts_per_bin: total inserts used per bin(expected to be an integer)
:param total_production_days: total days of expected production(expected to be an integer)
:return: the total inserts required per day(expected to be a string)
"""
tot_bins = annual_demand / lot_size
tot_bins_per_day = tot_bins / total_production_days
inserts_required = tot_bins_per_day * inserts_per_bin
return f"Inserts required per day: {inserts_required:.2f}"
- one_piece_quiz - this quiz tests you on a few basic questions on one piece and scores how well you've done.
# 8.
giant = input("What is the name of the giant that used to take care of Nico Robin? ").lower()
if giant == "jaguar d. saul":
score += 1
print("Correct!")
elif giant == "saul":
score += .5
print("Correct!")
else:
print("Incorrect!")
-
phoebe_adventures - this is a "choose your own adventure"-style game that centres around helping Phoebe Erin Class get home.
-
manga_eda - this is my first eda done on the "best-selling-manga.csv" dataset. I even made some charts!
- In Progress
- In Progress
- As previously stated, it will be a collection of junk. Don't worry about it.