In [13]:
from random import randint
from time import sleep
from IPython.display import clear_output
##################################################
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= yes n= no ---->")
if ok == "y":
clear_output()
main()
elif ok == "n":
print ("have a nice day :3")
else:
idk()
clear_output()
#IDK is asking if you would want to continue
###################################################################
def main():
sleepTimer = randint(0,6)
randomItem = randint(0,19)
inp = input("question here")
clear_output()
print ("prossesing :3")
sleep (sleepTimer)
print (inp)
print (r[randomItem])
idk()
main()
########################################################
prossesing :3 ewsfbhgjkwq Reply hazy, try again.
have a nice day :3
In [ ]: