Created
November 7, 2019 14:28
-
-
Save gkocjan/634d7e17895b982c4176f506af7adadd to your computer and use it in GitHub Desktop.
This file contains 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 random | |
givers = ['Marek', 'Przemek', 'Michał', 'Kamila'] | |
recipients = givers.copy() | |
for person in givers: | |
potential_gift_recipient = [ | |
recipient | |
for recipient in recipients | |
if recipient != person | |
] | |
recipient = random.choice(potential_gift_recipient) | |
recipients.remove(recipient) | |
print(f"{person} buys gift for {recipient}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment