Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. print("Hi, I am Jenny, your personal bot.")
  2. command = input("How can I help? ")
  3. if command == "add":
  4. print("Let's add some numbers!")
  5. users_name = input("What is your name? ")
  6. print("Welcome to Math world, " + users_name)
  7. print("Let's add some numbers.")
  8. input1 = input("Number1- ")
  9. input2 = input("Number2- ")
  10. input3 = input("Number3- ")
  11. number1 = int(input1)
  12. number2 = int(input2)
  13. number3 = int(input3)
  14. result = number1 + number2 + number3
  15. output = str(result)
  16. print(input1 + "+" + input2 + "+" + input3 + "=" + output)
  17. elif command == "subtract":
  18. print("Let's subtract some numbers.")
  19. input1 = input("Number1- ")
  20. input2 = input("Number2- ")
  21. number1 = int(input1)
  22. number2 = int(input2)
  23. result = number1 - number2
  24. output = str(result)
  25. print(input1 + "-" + input2 + "=" + output)
  26. else:
  27. print("I don't understand.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement