fork download
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3.  
  4. # 제6회 스푼 문화상품권 당첨자 추첨
  5.  
  6. from random import shuffle
  7.  
  8. account_list = ['hongyeol', 'lepamah', 'sjchoi', 'sampling', 'chungjh', 'oounding', 'anemona', 'torypapa', 'zenigame', 'chipee', 'heejae', 'watermelon13', 'gilma', 'woolgom', 'breath', 'goodhello', 'trunksucht', 'tkddls1116', 'kenankim', 'stareditor', 'jhy2246', 'diaryjoon', 'iradara', 'roona1383', 'jdb5457', 'lws', 'ohthisisit', 'nasirjulok']
  9. print("total vote account :", len(account_list))
  10. shuffle(account_list)
  11.  
  12. prizewinner = account_list[0]
  13.  
  14. print(prizewinner)
Success #stdin #stdout 0.02s 37616KB
stdin
Standard input is empty
stdout
total vote account : 28
stareditor