Skip to content

Abstract-Rothko/Jam_sessions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 

Repository files navigation

“Jam Sessions”

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:

  1. mini_project_sessions: this will a collection of small projects to test what I've been learning.

  2. practice_sessions: a collection of notes and other miscellaneous things.

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

Mini-Projects:

  1. 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}"
  1. 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!")
  1. phoebe_adventures - this is a "choose your own adventure"-style game that centres around helping Phoebe Erin Class get home.

  2. manga_eda - this is my first eda done on the "best-selling-manga.csv" dataset. I even made some charts!

manga publisher

  1. In Progress

Practice/Study Notes:

  1. In Progress

Junk Ideas:

  1. As previously stated, it will be a collection of junk. Don't worry about it.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages