Advertisement
David90278

Raspberry Pi - Python Course Maths Bot

Feb 17th, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.60 KB | None | 0 0
  1. print("Hi, I am Rotellity, the Funky Maths bot.")
  2.  
  3. print("I came, I saw, I added!")
  4.  
  5. users_name = input("Now tell me, what is your name?")
  6.  
  7. print("Welcome " + users_name)
  8.  
  9. print("lets have fun with numbers")
  10. input1 = input("Pick a number, any number!>")
  11. input2 = input("Now pick a second number>")
  12. input3 = input("Let's add one more to the mix, just for fun>")
  13.  
  14. number1 = int(input1)
  15. number2 = int(input2)
  16. number3 = int(input3)
  17.  
  18. result = number1 + number2 + number3
  19. output = str(result)
  20.  
  21.  
  22. print("Watch me add all three numbers!" + input1 + " + " + input2 + " + " + input3 + " = " + output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement