扫码一下
查看教程更方便
Python 字符串方法len()返回字符串的长度。
以下是len()方法的语法-
len( str )
整数
此方法返回字符串的长度。
以下示例显示了 len() 方法的用法。
#!/usr/bin/python3
str = "this is string example....wow!!!";
print ("Length of the string: ", len(str))
上述代码执行结果如下:
Length of the string: 32