#In the Book "The Emperor’s New Mind: Concerning Computers, Minds, and the Laws of Physics", Robert Penrose calculates that the odds of the Big Bang happening are “one part in 10^10^123” in other words, 1 followed by 10^123 zeroes. This simple program aims to emulate this chance count = 0 import random n = random.randint(0,10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) perfect = 7749299457394 while n != perfect: count += 1 print("Nope the number is not", n, "attempts made: ", count, "we want the number ", perfect) n = random.randint(0,10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) else: print("You have achieved the value of ", perfect, "after", count, "tries.")