Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- beginningWords = ["I think it's ", "Idk tbh but I think it's "]
- beginningFinal = str(random.choice(beginningWords))
- number1 = int(input("What would you want your first number to be? - "))
- number2 = int(input("What would you want your second number to be? - "))
- numberFinal = random.randint(0, number1 + number2)
- print(beginningFinal + str(numberFinal))
Advertisement
Add Comment
Please, Sign In to add comment