我如何为分配的输出/输入打印句子?

问题描述 投票:0回答:1

我有一个允许用户在3个选项中进行选择的代码即初级:1,中级:2,高级:3。但是,我想生成一个分配给3个选项中的每个选项的段落。例如如果用户为初学者输入1,则输出将显示“ Hi Beginner!我们将学习.....”。

到目前为止,我尝试过的代码仅使用print(“”)选项,后跟如果f == 0:print(“您已输入” + str(inp)+“:” + out)。但是,由于我在写长段文字,因此输出混乱。

python string input output
1个回答
0
投票

[嗯,我认为您在打印一行时没有在打印文本中使用“ \ n”,这就是为什么输出将始终是整行的原因。您可以使用“ \ n”来写不同的行:

print("This is a line\nNow this is other")

或者您可以使用三引号:

print("""This is a line
Now this is other""")
© www.soinside.com 2019 - 2024. All rights reserved.