I created the list with range numbers from -90 to 90. Now I need to make the random number from this list to appear in my question. Can anyone help me with that? This is where I got so far:
latitude = [n for n in range(-90,90)]
record = latitude[random.randrange(-90,90)]
question =['lati','country']
questions = random.choice(question)
if questions == 'lati':
resp = raw_input('Is Wroclaw north of ' + record)
When I tried to run this I received an error saying that i cannot concatenate 'str' and 'int' objects.