Created
March 26, 2025 15:46
-
-
Save ebanner/81966179084ab6850c0ef6ed011a30f9 to your computer and use it in GitHub Desktop.
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
import string | |
import random | |
letters = random.sample(string.ascii_uppercase, 7) | |
central_letter, word_flower_letters = letters[0], letters[1:] | |
print(central_letter) | |
print(','.join(word_flower_letters)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment