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

