python保留字中有type关键字吗,type()函数简介

python保留字中有type关键字吗

python的33个保留字中并没有type。但python内置了type()函数,用来反向解析python对象的数据类型。关于python的33个保留字,可以参考:python的标识符命名规则,保留字表。而type()函数的用法,可以参考如下实例。

type()函数实例

>>> a = 1
>>> type(a)
<class 'int'>
>>> b='x1y1z1.com,大器编程'
>>> type(b)
<class 'str'>
>>> c = list(range(10))
>>> type(c)
<class 'list'>

笨鸟问答 / python问答 :





Copyright © 2022-2024 笨鸟工具 x1y1z1.com All Rights Reserved.