Python len()方法
2021-04-08 04:27
阅读:552
标签:post int www comm 参数 pos 项目 run 个数 Python len() 方法返回对象(字符、列表、元组等)长度或项目个数。每组词 www.cgewang.com len()方法语法: 返回对象长度。 以下实例展示了 len() 的使用方法: Python len()方法 标签:post int www comm 参数 pos 项目 run 个数 原文地址:https://www.cnblogs.com/yc10086/p/13379893.html描述
语法
len( s )
参数
返回值
实例
>>>str = "runoob" >>> len(str) # 字符串长度 6 >>> l = [1,2,3,4,5] >>> len(l) # 列表元素个数 5
评论
亲,登录后才可以留言!