返回列表中的项目数:
mylist = ["apple", "orange", "cherry"]x = len(mylist)print(x)
mylist = ["apple", "orange", "cherry"]
x = len(mylist)
print(x)
len() 函数返回对象中项目的数量。
len()
当对象是字符串时,len() 函数返回字符串中的字符数。
len(object)
返回字符串中的字符数:
x = len("Hello")print(x)
x = len("Hello")