{}".format(random_number))
###method
def Dr_Strange_Bargain(n):
print("Dr Strange: Dormammu! I've come to bargain.\n")
time.sleep(2)
print("Dormammu: You've come to die.\n")
print("Dormammu: your world is now my world, like all worlds. \n")
time.sleep(2)
##Recursion Method
if n == 0:
n = n+1
Dr_Strange_Bargain(n)
elif n == 1:
time.sleep(2)
print("Dormammu: What is this?\n")
print("Dormammu: Illusion? - No, this is real.\n")
time.sleep(2)
n = n+1
Dr_Strange_Bargain(n)
elif (n > 1) & (n != random_number):
time.sleep(2)
print("Dormammu: You cannot do this forever.\n")
print("Dormammu: No! Make it stop.\n")
print("Dr Strange: Actually, I can.\n This is how things are now. \n You and me, trapped in this moment, endlessly.\n")
time.sleep(2)
n = n+1
Dr_Strange_Bargain(n)
elif n == random_number:
print("Dr Strange: Take your zealots from the Earth.\n End your assault on my world.\n Never come back.")
Dr_Strange_Bargain(n)
It looks like you posted long piece of code, consider editing it out and putting it on hastebin.com and pasting link to it instead. Alternatively, send your code in a file.
Обсуждают сегодня