我不知道该怎么做一遍又一遍执行的代码。我想实现以下目标: (<代表输入,>代表输出)
message=input()
print('Write down the text.')
>Write down the text.
<qwerty
>qwerty
>Write down the text.
<asd
>asd
答案 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)