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
Get:1 http://archive.ubuntu.com/ubuntu bionic InRelease [242 kB] | |
Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] | |
Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] | |
Get:4 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [163 kB] | |
Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] | |
Get:6 http://archive.ubuntu.com/ubuntu bionic/restricted amd64 Packages [13.5 kB] | |
Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 Packages [1344 kB] | |
Get:8 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [3910 B] | |
Get:9 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [5436 B] | |
Get:10 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [377 kB] |
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
#!/usr/bin/env python | |
import random | |
# heroes.txt file format: One hero per line | |
# players.txt file format: One player per line. | |
# <player_name>: <banned_hero_1>, <banned_hero_2>, ..., <banned_hero_n> | |
# global list of heroes and players | |
heroes = list() |