def helloworld(): name = input('input your name:') message = 'Hello'+ name + '!' print(message) # ここで実行 helloworld() 実行すると、さっきと同じく ...