# -*- coding: utf-8 -*- """ Created on Thu Feb 7 09:31:17 2019 @author: achuang """ # -*- coding: utf-8 -*- """ Created on Wed Jan 23 00:26:38 2019 @author: Yen-hua """ def askName(): """ Ask the user for their first name, then last name and then print them both, one line after the other Hint: Use input() and store it as an variable """ #YOUR CODE HERE def askFullName(): """ Ask the user for their first name, then last name and then print them both on the same line """ #YOUR CODE HERE def calorieCounter(): """ Build a calorie counter for one day. The NHS recommends that an adult male takes on board 2,500 calories per-day and an adult woman takes on 2,000 calories per-day. Build your program for a woman or a man. Ask the user how much calories they have ate and print out hoe much they can still eat. """ #YOUR CODE HERE def FoodExpenses(): """ Have a user define a budget over a five day period and each day ask them how much they have spent. Print an unique message if they have gone into the negatives. """ #YOUR CODE HERE def areaCalculator(): """ Ask the users for 2 measurements of an rectangle and print out the area of it. """ #YOUR CODE HERE def yearsToTime(): """ Ask the users for their age in years and print out how long they have been alive in hours and minutes and seconds. """ #YOUR CODE HERE