questionList=[]
for i in range(1,4):
    print(f'我是ai小助手，你的第{i}个问题是:')
    question = f"问题{i}"
    questionList.append(question)
print(questionList)