Skip to content

Instantly share code, notes, and snippets.

@davidhariri
Created May 9, 2017 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidhariri/973bd3d47c2b422ef7eae13884c744aa to your computer and use it in GitHub Desktop.
Save davidhariri/973bd3d47c2b422ef7eae13884c744aa to your computer and use it in GitHub Desktop.
Baseball Fighter Generator
import random
f_names = [
"Sleve",
"Onson",
"Darryl",
"Anatoli",
"Rey",
"Glenallen",
"Mario",
"Raul",
"Kevin",
"Tony",
"Bobson",
"Willie",
"Jeromy",
"Scott",
"Shown",
"Dean",
"Mike",
"Dwigt",
"Tim",
"Karl",
"Todd"
]
l_names = [
"McDichael",
"Sweeney",
"Archideld",
"Smorin",
"McSriff",
"Mixon",
"McRlwain",
"Chamgerlain",
"Nogilny",
"Smehrik",
"Dugnutt",
"Dustice",
"Gride",
"Dourque",
"Furcotte",
"Wesrey",
"Truk",
"Rortugal",
"Sandaele",
"Dandleton",
"Sernandez",
"Bonzalez"
]
for i in list(range(22)):
print(random.choice(f_names) + " " + random.choice(l_names))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment