声明反复执行代码

时间:2019-11-30 22:03:33

标签: python if-statement

我不知道该怎么做一遍又一遍执行的代码。我想实现以下目标: (<代表输入,>代表输出)

message=input()
print('Write down the text.')
>Write down the text.
<qwerty
>qwerty
>Write down the text.
<asd
>asd

2 个答案:

答案 0 :(得分:1)

您可以通过

实现
   while True:
      // code you want to execute repeatedly here

while循环将继续执行,直到条件变为假(在这种情况下永远不会发生),因此,如果/当您想退出循环时,则需要使用break声明

答案 1 :(得分:0)

你是这个意思吗?

while True:
   message=input("Write down the text: ")
   print(message)