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