hours = int(input("How many hours did you work this week? "))
days = int(input("How many days did work this week? "))
print("You worked an average per day of ", hours/days, "hours")
- Try the following, then fix the errors.
temperature = input("enter the current tempature: ")
night_temp = temperature - 20
cats = input("How many cats do have? ")
dogs = input("How many dogs do have? ")
total = cats + dogs
print(total)