可能重复:
字符串和整数连接
我创建了范围从 -90 到 90 的列表。现在我需要让这个列表中的随机数出现在我的问题中。任何人都可以帮助我吗?这是我到目前为止的地方:
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)
当我尝试运行它时,我收到一条错误消息,说我无法连接“str”和“int”对象。