美文网首页
Python中的数据类型转换

Python中的数据类型转换

作者: 晃里晃荡 | 来源:发表于2018-04-04 14:48 被阅读8次

    常用的数据类型转换

    • int(x) 将x转换为一个整数
    • float(x) 将x转换为一个浮点数
    • str(x) 将x转换为一个字符串

    >>>password = input("密码:")
    密码:123456
    >>>
    >>>password
    '123456'
    >>>type(password)
    <class 'str'>
    >>>
    >>>a = int(password)
    >>>a
    123456
    >>>type(a)
    <class 'int'>
    >>>
    >>>b = int("123456")
    >>>b
    123456
    >>>type(b)
    <class 'int'>
    >>>
    >>>c = int("3.14")
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ValueError: invalid literal for int() with base 10: '3.14'
    >>>c = float("3.14")
    >>>c
    3.14
    >>>type(c)
    <class 'float'>
    >>>

    相关文章

      网友评论

          本文标题:Python中的数据类型转换

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