Advertisement
elena_gancedo

Average

Jun 26th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.76 KB | None | 0 0
  1. print("Hi, I am Eley, your personal bot.")
  2. command = input("How can I help? ")
  3. if command == "add" or command == "plus":
  4.     print("lets add some numbers")
  5.     input1 = input("Number 1> ")
  6.     input2 = input("Number 2> ")
  7.     number1 = int(input1)
  8.     number2 = int(input2)
  9.     result = number1 + number2
  10.     output = str(result)
  11.     print(input1 + " + " + input2 + " = " + output)
  12. elif command == "average":
  13.     how_many = input("How many numbers> ")
  14.     how_many = int(how_many)
  15.     total = 0
  16.     for number_count in range(how_many):
  17.         number = input("Enter number " + str(number_count) + "> ")
  18.         total = total + int(number)
  19.     result = total / how_many
  20.     print("the average = " + str(result))
  21. else:
  22.     print("Sorry your entry is wrong.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement