なし データ型:
Python NoneType は、値が存在しないことを表すデータ型です。 Python では、NoneType はキーワード「None」で表されます。
例:
この例では、関数が呼び出されるため、関数内が出力されます。
def display(): print("hello") display()
出力:
hello
例 2:
この例では、関数は値を返しません。したがって、 print(display()) は 'None' になります。
def display(): print("hello") print(display())
出力:
hello None
例 3:
この例では、return ステートメントを使用して値 (つまり 30) を返します。 return ステートメントを使用しない場合、出力は「None」になります。
def display(): print("hello") return 10+20 print(display())
出力:
hello 30
input() 関数:
Python の組み込み関数 input() はユーザーから入力を受け取り、デフォルトでそれを文字列として返します。
例:
name = input("Enter your name: ") print("Welcome to Python", name) print(type(name))
出力:
Enter your name: Pritha Welcome to Python Pritha <class 'str'>
以上が日 なし Python のデータ型と input() 関数の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。