Python len()方法


描述

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

语法

len()方法语法:

len( str )

参数

  • 无。

返回值

返回字符串长度。

实例

以下实例展示了len()的使用方法:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

str = "this is string example....wow!!!"

print "字符串长度: ", len(str)

以上实例输出结果如下:

字符串长度:  32