您现在的位置是:课程教程文章
python中len是什么
2023-12-18 22:09课程教程文章 人已围观
Python len() 方法返回字符串长度。
len()方法语法:
len( str )
相关推荐:《Python教程》
返回值:
返回字符串长度。
以下实例展示了len()的使用方法:
#!/usr/bin/python str = "this is string example....wow!!!"; print "字符串长度: ", len(str);
以上实例输出结果如下:
字符串长度: 32课程教程:python中len是什么
上一篇:python继承是如何实现的
下一篇:没有了