There are 3 syntax errors in the following code. Fix it to print correctly without errors. It will print, โHer name is Molly and her favorite food is tunaโ.
# Set each word to its own variable
word1 = "twinkle"
word2 = "little"
word3 = "star"
# Print each word in succession
# Using commas automaticallly inserts spaces
print(word1, word1, word2, word3)
#another option is
#print(word1 + " " + word1 + " " + word2 + " " + word3)
Many people keep time using a 24 hour clock (11 is 11am and 23 is 11pm, 0 is midnight). If it is currently 13 and you set your alarm to go off in 50 hours, it will be 15 (3pm). Write a Python program to solve the general version of the above problem. Ask the user for the time now (in hours), and then ask for the number of hours to wait for the alarm. Your program should output what the time will be on the clock when the alarm goes off. Using the int() function and modulus operator % could come in handy!
#prompt the user for the current time
current_time_string = input("What is the current time (in hours)?")
#prompt the user for the time to wait
waiting_time_string = input("How many hours do you have to wait?")
#convert the current time and the time to wait to integers
current_time_int = int(current_time_string)
waiting_time_int = int(waiting_time_string)
#combine the two times
hours = current_time_int + waiting_time_int
#use the modulus operator to keep the time within 24 hours
timeofday = hours % 24
#print the time of day that the alarm will go off
print(timeofday)
Assume that you have 24 slices of pizza and 7 people that are going to share it. Thereโs been some arguments among your friends, so youโve decided to only give people whole slices. Your pet dog Andy loves pizza. Write a Python expression with the modulus operator that calculates how many pizza slices will be left over for your dog after serving just whole slices to 7 people. Assign the result of that expression to forAndy.
#prompt the user for the amount of inches they would like to convert
inches = input("How many inches would you like to convert?")
#convert the inches to an integer
inches_int = int(inches)
#convert to feet
feet = inches_int / 12
#print the amount of feet
print(feet)
Write code below to get at least 3 values from the user using the input function and output a mad lib (which will use the input to tell a silly story).