Skip to content

正定县博航电子科技有限公司

  • 首页

正定县博航电子科技有限公司

  • 首页
2022年 11月 9日

python 怎么查看变量的数据类型

  • 未分类
  • admin

方法

type(variable_name)
  • 1

示例

a = 'hello'
b = type(a)
print(b)

a = 10
b = type(a)
print(b)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

结果

<class 'str'>
<class 'int'>
  • 1
  • 2
Copyright © 2022