Created
December 22, 2019 22:51
-
-
Save Fusion86/08841db2aa86012af92dd43aaf339115 to your computer and use it in GitHub Desktop.
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
civilizations = [ | |
"Aztecs", | |
"Berbers", | |
"Britons", | |
"Bulgarians", | |
"Burmese", | |
"Byzantines", | |
"Celts", | |
"Chinese", | |
"Cumans", | |
"Ethiopians", | |
"Franks", | |
"Goths", | |
"Huns", | |
"Incas", | |
"Indians", | |
"Italians", | |
"Japanese", | |
"Khmer", | |
"Koreans", | |
"Lithuanians", | |
"Magyars", | |
"Malay", | |
"Malians", | |
"Mayans", | |
"Mongols", | |
"Persians", | |
"Portuguese", | |
"Saracens", | |
"Slavs", | |
"Spanish", | |
"Tatars", | |
"Teutons", | |
"Turks", | |
"Vietnamese", | |
"Vikings", | |
] | |
if __name__ == "__main__": | |
import random | |
civ = random.choice(civilizations) | |
print("Chosen civ: {}".format(civ)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment