Kxffie

Python Stupid Calculator

Jan 29th, 2022
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import random
  2.  
  3. beginningWords = ["I think it's ", "Idk tbh but I think it's "]
  4. beginningFinal = str(random.choice(beginningWords))
  5.  
  6. number1 = int(input("What would you want your first number to be? - "))
  7. number2 = int(input("What would you want your second number to be? - "))
  8.  
  9. numberFinal = random.randint(0, number1 + number2)
  10.  
  11. print(beginningFinal + str(numberFinal))
Advertisement
Add Comment
Please, Sign In to add comment