Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. print("Hi, I am Emi, your personal bot.")
  2. your_name = input("What is your name?")
  3. print("Welcome, " + your_name + ".")
  4.  
  5. command = input(
  6. "Which do you want to know, the total or the average age of your families? Type 'add' or 'ave'."
  7. )
  8. if command == "add":
  9. how_many = input("How many people in your family?> ")
  10. how_many = int(how_many)
  11. total = 0
  12. for number_count in range(how_many):
  13. number = input("Enter the age " + str(number_count) + "> ")
  14. total = total + int(number)
  15. result = total
  16. print("the total age = " + str(result))
  17.  
  18.  
  19. elif command == "ave":
  20. how_many = input("How many people in your family?> ")
  21. how_many = int(how_many)
  22. total = 0
  23. for number_count in range(how_many):
  24. number = input("Enter the age " + str(number_count) + "> ")
  25. total = total + int(number)
  26. result = total / how_many
  27. print("the average age = " + str(result))
  28.  
  29. else:
  30. print("Sorry I don't understand.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement