美文网首页
02、基本数据类型

02、基本数据类型

作者: hnssyg | 来源:发表于2019-11-30 13:53 被阅读0次

基本数据类型:整数、浮点数、字符串、布尔值

>>> type(3)

<class 'int'>

>>> type("3")

<class 'str'>

>>> type(True)

<class 'bool'>

>>> type(8.8)

<class 'float'>

类型转换

>>> type(int('8'))

<class 'int'>

>>> type(str(8))

<class 'str'>

>>> bool(0)

False

>>> bool(123)

True

相关文章

网友评论

      本文标题:02、基本数据类型

      本文链接:https://www.haomeiwen.com/subject/vkjowctx.html