• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回python栏目

40 - 自带方法 - t = type(xxx) - 查数据格式

作者:

贺及楼

成为作者

更新日期:2024-10-27 17:44:25

type() - 查数据格式

总结

Python 中的 type 是一个内置函数,用于获取或设置对象的类型。它可以返回对象的类型信息,或创建一个新的类型对象。type 在动态类型检查、创建自定义数据类型和元编程中非常有用。它还可以用来检查一个对象是否是特定类型,或动态地创建新的类型。type 提供了对Python元数据的访问,是实现面向对象编程和类型相关操作的关键工具。

类型 代码 类型
字符串 a = "abc" <class 'str'>
整型 b = 123 <class 'int'>
布尔 c = True <class 'bool'>
列表 d = [] <class 'list'>
元组 e = (1,2,3) <class 'tuple'>
字典 f = {a:"1",b:2,c:[1,2]} <class 'dict'>
集合 g = set([1,2,3,1]) <class 'set'>

数据格式体现

  1. ## 字符串
  2. a = "abc"
  3. print(type(a))
  4. <class 'str'>

python字符串

  1. ## 整型
  2. b = 123
  3. print(type(b))
  4. <class 'int'>

python整型

  1. ## 布尔
  2. c = True
  3. print(type(c))
  4. <class 'bool'>

python布尔

  1. ## 列表
  2. d = []
  3. print(type(d))
  4. <class 'list'>

python列表

  1. ## 元组
  2. e = (1,2,3)
  3. print(type(e))
  4. <class 'tuple'>

python元组

  1. ## 字典
  2. f = {a:"1",b:2,c:[1,2]}
  3. print(type(f))
  4. <class 'dict'>

python字典

  1. ## 集合:无序不重复
  2. g = set([1,2,3,1])
  3. print(type(g))
  4. <class 'set'>
  5. print(g)
  6. {1, 2, 3}

python集合

强转类型

  1. str()
  2. int()
  3. bool()
  4. list()
  5. tuple()
  6. set()