当前位置: 首页 > 文档资料 > Python 中文教程 >

len(string)

优质
小牛编辑
125浏览
2023-12-01

描述 (Description)

方法len()返回字符串的长度。

语法 (Syntax)

以下是len()方法的语法 -

len( str )

参数 (Parameters)

  • NA

返回值 (Return Value)

此方法返回字符串的长度。

例子 (Example)

以下示例显示len()方法的用法。

#!/usr/bin/python
str = "this is string example....wow!!!";
print "Length of the string: ", len(str)

当我们运行上面的程序时,它产生以下结果 -

Length of the string:  32