# This program says hello and asks for my name, then repeats it.
print('Hello world!')
print('What is your name?')
myName = input()
while
print('It is nice to meet you, ' + myName)
我的问题是我在哪里放什么?我正在尝试学习如何使用while
循环,但我不知道在 while 之后要放什么来让它永远重复你的名字。提前致谢!