len()函数在 Python 中有什么作用?
len()
在 Python 中,len()是主要的字符串函数。它确定输入字符串的长度。
>>> some_string = 'techbeamers' >>> len(some_string) 11