#!/usr/bin/env python from sys import argv from random import choice maps = { 'Battle on the Dunes', 'Canyon Ambush', 'Duel at Dawn', 'Clash at Blackcliff', 'Fight over Firnfeld', 'Northern Fjords', 'Paritan Rumble', 'Water Hazard' } for i in range(int(argv[1])): print('Match #' + str(i+1) + ': ' + choice(tuple(maps)))