無資料型態:
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中文網其他相關文章!