fork download
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3.  
  4. # 제4회 스푼 문화상품권 당첨자 추첨
  5.  
  6. from random import shuffle
  7.  
  8. account_list = ['sjchoi', 'sampling', 'idas4you', 'chungjh', 'zenigame', 'jhy2246', 'oounding', 'watermelon13', 'jkyoon', 'sleepcat', 'woolgom', 'breath', 'sogalaxy', 'deadpxsociety', 'lws', 'heejae', 'ohthisisit', 'iceflowersteem', 'oounchanee']
  9. shuffle(account_list)
  10.  
  11. prizewinner = account_list[0]
  12.  
  13. print(prizewinner)
Success #stdin #stdout 0.02s 11752KB
stdin
Standard input is empty
stdout
zenigame