def names(): """ Ask the user for their first name and last name Join them together and print it out """ # YOUR CODE HERE fname = input("Enter your first name") def area(): """ Ask the user for a length and width Print out TWO area calculations, 1 if it's a rect and 1 if it is a tri """ # YOUR CODE HERE def pizza(): """ Ask the user for a number of pizzas and people Print out how many slices each person gets """ # YOUR CODE HERE def age_to_days(): """ Ask the user for how old they are in years Print out how many days they have existed """ # YOUR CODE HERE def surcharge_4090(): """ Ask the user for how much their 4090 costs Add 2% to it and print out the surcharge cost and the total """ # YOUR CODE HERE def weeks_to_4090(): """ Ask the user for how much they save per week Tell them how many weeks it'll take to save up to a $3500 GPU """ # YOUR CODE HERE def circles(): """ Ask the user for a radius Print out the area of the circle """ # YOUR CODE HERE def km_to_mm(): """ Ask the user for a length in km Print out how many m, cm and mm it is. """ # YOUR CODE HERE def using_len(): """ Ask the user for a word Print out how man letters it contains """ # YOUR CODE HERE def paint_calc(): """ Ignore this. Find the other .py file for the instructions """