I'm trying to create a list of strings where each element looks like "TEMP1996_U". The year (1996 in this case) comes from a list of years and the type (U in this case) comes from a list of strings. I want the list to have every combination of year and type.
To get a list with just year, I know I can do this:
years = range(1990,2000)
type_c = ["U", "R", "K", "B"]
temp_list = map('TEMP{0}'.format, years)
Can I add type_c on to this list in a similar way?