美文网首页
Python的基本数据类型以及类型转换

Python的基本数据类型以及类型转换

作者: 刘年年 | 来源:发表于2022-07-18 18:35 被阅读0次

    Python的基本数据类型共有4种

    1、int:整数

    2、float:浮点类型

    3、str:字符串类型

    4、bool:取值True或False

    python中查看某个数据属于什么类型,使用type()函数

    如type('123')    <class 'str'>

       type(123)      <class 'int'>

    基本数据类型的转换

    bool(0)  False           

    bool(123) True

    int('123') str-->int  返回123

    str(123)  int-->str  返回字符串123

    相关文章

      网友评论

          本文标题:Python的基本数据类型以及类型转换

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