len()
是 Python 的一個內置函數,用于返回對象(如字符串、列表、元組等)的長度或項目數。這個函數只接受一個參數,即你想要計算長度的對象。
以下是 len()
函數的一些基本用法:
text = "Hello, world!"
length = len(text)
print(length) # 輸出:13
my_list = [1, 2, 3, 4, 5]
length = len(my_list)
print(length) # 輸出:5
my_tuple = (6, 7, 8, 9)
length = len(my_tuple)
print(length) # 輸出:4
注意,len()
函數不能直接計算整數、浮點數或其他非序列類型的對象的長度。在這種情況下,你會收到一個 TypeError。
例如:
number = 12345
length = len(number) # 這將引發一個錯誤