#ShowCities.py def MLB(): """ Returns (City,x,y) where Cities is a list of strings that names 28 MLB cities and lists of floats x and y that specify their xy location. """ City = (['Anaheim','Arlington','Atlanta','Baltimore','Boston','Chicago','Cincinnati', 'Cleveland', 'Denver','Detroit','Houston','Kansas City','Los Angeles', 'Miami','Milwaukee','Minneapolis', 'New York', 'Oakland','Philadelphia', 'Phoenix','Pittsburgh','San Diego','San Francisco','Seattle', 'St.Louis','Tampa', 'Toronto','Washington']) x = ([-1223, -188, 451, 836, 1111, 281, 441,581,-583,516,-103, -63,-1248, 656, 271, 1,966,-1448, 906, -938, 666, -1193, -1453,-1448, 156, 541, 696, 816]) y = ([-289,-368,-298, 87 ,311 , 269 , 80 , 248 , 122 ,304 ,-571 , 80 ,-270 , -851 , 360 , 493,192 , -11 ,143 ,-312 ,171 , -368 , -11 ,675 , 45 ,-697 ,402 , 66 ]) return (City,x,y) if __name__ == '__main__': (C,x,y) = MLB()