fork download
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3.  
  4. # 제7회 스푼 문화상품권 당첨자 추첨
  5.  
  6. from random import shuffle
  7.  
  8. account_list = ['chungjh', 'zenigame', 'oounding', 'sjchoi', 'jhy2246', 'coffeenut', 'idas4you', 'sampling', 'yidar', 'todayis', 'woolgom', 'gilma', 'watermelon13', 'jacobyu', 'goodhello', 'breath', 'heejae', 'lws', 'diaryjoon', 'gangway', 'stareditor', 'alchemists', 'sooldukhu', 'bighug', 'sweetboyoy', 'ogh0915', 'iceflowersteem', 'momoggo']
  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
coffeenut