So, I have a python script which requires an input from the terminal. I have 20 different arrays and I want to print the array based on the input.
This is the code minus the different arrays.
homeTeam = raw_input()
awayTeam = raw_input()
a = (homeTeam[0])+(awayTeam[3])/2
b = (hometeam[1])+(awayTeam[2])/2
So, effectively what I want to happen is that homeTeam/awayTeam will take the data of the array that is typed.
Thanks