# 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
いますが、あなたの名前を永遠に繰り返すためにしばらく後に何を入れたらよいかわかりません。前もって感謝します!