This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To get the clue, enter the correct seed. | |
# If you don't know it, we know where you live! | |
import random | |
secret = # guess me | |
random.seed(secret) | |
words = "longing rusted furnace daybreak seventeen benign nine homecoming cash one freight car bubble flush calculator smash with book blow invincible".split(' ') | |
code = random.sample(words, 3) | |
print('Clue: ' + ' '.join(code)) |
OlderNewer