Python len函数

ChatGPT 3.5 国内中文镜像站免费使用啦

零基础 Python 学习路线推荐 : Python 学习目录 >> Python 基础入门

     在 Python 中除了 print 函数之外,len 函数和 type 函数应该算是使用最频繁的 API 了,操作都比较简单。


一.Python len 函数简介

     返回对象的长度(项目数)参数可以是序列(例如字符串 str元组 tuple列表list )或集合(例如字典 dict集合 set冻结集合 frozenset ),语法如下:

'''
参数:
    s – 对象或者序列(例如字符串str、元组tuple、列表list)或集合(例如字典dict、集合set或冻结集合)

返回值:返回长度(>=0)
'''

len(s)

二.Python len 函数使用

# !usr/bin/env python
# -*- coding:utf-8 _*-
"""
@Author:猿说编程
@Blog(个人博客地址): www.codersrc.com
@File:Python len 函数.py
@Time:2021/04/29 07:37
@Motto:不积跬步无以至千里,不积小流无以成江海,程序人生的精彩需要坚持不懈地积累!
 
"""


a = (1,2,3,4,5,6) #元组
b = [1,2,3,4] #列表
c = range(0,11) #range
d = {'name':'lisi','age':14} #字典
e = 'helloworld' #字符串
f = {1,2,3,4,5} #集合
g = frozenset([1,2,3,4,5,8]) #冻结集合

print("a:",len(a))
print("b:",len(b))
print("c:",len(c))
print("d:",len(d))
print("e:",len(e))
print("f:",len(f))


‘’‘
输出结果:

a: 6
b: 4
c: 11
d: 2
e: 10
f: 5
’‘’

三.猜你喜欢

  1. Python for循环
  2. Python 字符串
  3. Python 列表list
  4. Python 元组tuple
  5. Python 字典 dict
  6. Python 条件推导式
  7. Python 列表推导式
  8. Python 字典推导式
  9. Python 函数声明和调用
  10. Python 不定长参数 *argc/**kargcs
  11. Python 匿名函数 lambda
  12. Python return 逻辑判断表达式
  13. Python 字符串/列表/元组/字典之间的相互转换
  14. Python 局部变量和全局变量
  15. Python type 函数和 isinstance 函数区别
  16. Python is 和 == 区别
  17. Python 可变数据类型和不可变数据类型
  18. Python 浅拷贝和深拷贝

ChatGPT 3.5 国内中文镜像站免费使用啦
© 版权声明
THE END
喜欢就支持一下吧
点赞2 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容