在Python中,len()函數用于返回指定對象的長度或者元素個數。它可以接受字符串、列表、元組、集合、字典等對象作為參數,并返回它們的長度。例如:
# 字符串長度
s = "hello"
print(len(s)) # 輸出 5
# 列表長度
lst = [1, 2, 3, 4, 5]
print(len(lst)) # 輸出 5
# 元組長度
tup = (1, 2, 3)
print(len(tup)) # 輸出 3
# 集合長度
set1 = {1, 2, 3, 4, 5}
print(len(set1)) # 輸出 5
# 字典長度
dic = {'a': 1, 'b': 2, 'c': 3}
print(len(dic)) # 輸出 3
總之,len()函數可以用于計算各種對象的長度,從而方便地獲取它們的元素個數。