Skip to content

Instantly share code, notes, and snippets.

@nailo2c
Created November 15, 2019 09:51
Show Gist options
  • Save nailo2c/d690082d51c2da8c9dad0f487b84c7e9 to your computer and use it in GitHub Desktop.
Save nailo2c/d690082d51c2da8c9dad0f487b84c7e9 to your computer and use it in GitHub Desktop.
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