Created
November 15, 2019 09:51
-
-
Save nailo2c/d690082d51c2da8c9dad0f487b84c7e9 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 random | |
random.seed(5566) | |
def random_shuffle(band_list): | |
for _ in range(100): | |
random.shuffle(band_list) | |
return | |
first = ['Out the Door', 'Socrates'] | |
second = ['Weekly Report', '趨程勢'] | |
third = ['Undecided Yet', '東京四遍', '21樂團', 'Kodomo'] | |
random_shuffle(first) | |
print(first) | |
random_shuffle(second) | |
print(second) | |
random_shuffle(third) | |
print(third) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment