In [19]:
from random import randint
from time import sleep
from IPython.display import clear_output
################################
# the variable r is a replacer for "response" in which the 8 ball will
# generate one of many responses down
r = ["As I see it, yes.",
"Ask again later.",
"Better not tell you now.",
"Cannot predict now.",
"Concentrate and ask again.",
"Don’t count on it.",
"It is certain.",
"It is decidedly so.",
"Most likely.",
"My reply is no.",
"My sources say no.",
"Outlook not so good.",
"Outlook good.",
"Reply hazy, try again.",
"Signs point to yes.",
"Very doubtful.",
"Without a doubt.",
"Yes.",
"Yes",
"definitely.",
"You may rely on it."]
################################
def idk():
ok = input("would you like to continue?---y or n?")
if ok == "y":
clear_output()
main()
elif ok == "n":
print("Bye")
else:
idk()
clear_output()
###############################
def main():
sleepTimer = randint(0,6)
randomItem = randint(0, 19)
inp = input("Enter your question here")
clear_output()
print("Processing")
sleep(sleepTimer)
print(inp)
print(r[randomItem])
idk()
main()
Processing Is kanye controversal Yes.
Bye
In [ ]: