# Python CodeRecipe|input()の使い方
# input()の例1
Ask for the user's name and print it:
print('Enter your name:')x = input()print('Hello, ' + x)
# input()の定義及び使い方
input()関数は、ユーザー入力を可能にします。
# input()の構文
input(prompt)
# input()の引数
プロンプト 入力前の既定のメッセージを表す文字列型の値を指定します。
# input()の例2
Use the prompt parameter to write a message before the input:
x = input('Enter your name:')print('Hello, ' + x)