Created
September 4, 2015 12:53
-
-
Save Baekjoon/bc8df287a1fca734487b 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 | |
people = list(range(1,37+1)) | |
for i in range(100): | |
random.shuffle(people) | |
print people[:29] | |
print people[29:] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment