Advertisement
Lasall42

Untitled

Jul 3rd, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. #!/usr/bin/env python
  2. from sys import argv
  3. from random import choice
  4.  
  5. maps = { 'Battle on the Dunes',
  6.          'Canyon Ambush',
  7.          'Duel at Dawn',
  8.          'Clash at Blackcliff',
  9.          'Fight over Firnfeld',
  10.          'Northern Fjords',
  11.          'Paritan Rumble',
  12.          'Water Hazard' }
  13.  
  14. for i in range(int(argv[1])):
  15.     print('Match #' + str(i+1) + ': ' + choice(tuple(maps)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement