博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python中,如何将字符串转换为数字(将数字转换为整型),字符串的10转换为整型的10,10.5转换为10...
阅读量:5711 次
发布时间:2019-06-17

本文共 1374 字,大约阅读时间需要 4 分钟。

说明

  在实际的应用过程中,有的时候可能会遇到字符串的10,需要将字符串的10转换为数字的10

  在此记录下,通过int函数转换的过程。

操作过程

1.将字符串转换为整型的10

>>> str1 = "10"        #将一个字符串的10赋给变量str1>>> type(str1)
#通过type函数查出来类型是str>>> int1 = int(str1) #通过int函数,转换为了int类型的10>>> type(int1)
>>> int110

 2.如果不传任何的参数,int的结果是0

>>> int()0

 3.如果传入的是小数,转换的结果是没有小数部分

>>> int(10.0)10>>> int(10.5)10>>> int(-10.5)-10>>> int(-10.0)-10

备注:无论传入的正数,还是负数,都会将小数部分去掉,符号保留。

 

int()函数的官方解释

def __init__(self, x, base=10): # known special case of int.__init__        """        int([x]) -> integer        int(x, base=10) -> integer                Convert a number or string to an integer, or return 0 if no arguments        are given.  If x is a number, return x.__int__().  For floating point        numbers, this truncates towards zero.                If x is not a number or if base is given, then x must be a string,        bytes, or bytearray instance representing an integer literal in the        given base.  The literal can be preceded by '+' or '-' and be surrounded        by whitespace.  The base defaults to 10.  Valid bases are 0 and 2-36.        Base 0 means to interpret the base from the string as an integer literal.        >>> int('0b100', base=0)        4        # (copied from class doc)        """        pass

 

文档创建时间:2018年12月7日16:53:32

 

转载于:https://www.cnblogs.com/chuanzhang053/p/10083844.html

你可能感兴趣的文章
C# ASP.NET 权限设计 完全支持多数据库多语言包的通用权限管理系统组件源码
查看>>
测试工具综合
查看>>
asp.net中调用COM组件发布IIS时常见错误 80070005解决方案
查看>>
分享一段ios数据库代码,包括对表的创建、升级、增删查改
查看>>
如何书写高质量的jQuery代码
查看>>
Activity的生命周期整理
查看>>
【记录】JS toUpperCase toLowerCase 大写字母/小写字母转换
查看>>
在 Linux 系统中安装Load Generator ,并在windows 调用
查看>>
Visifire charts ToolBar
查看>>
Mysql查询
查看>>
数据传输流程和socket简单操作
查看>>
利用广播实现ip拨号——示例
查看>>
ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
查看>>
OC中KVC的注意点
查看>>
JQ入门(至回调函数)
查看>>
1112: 零起点学算法19——输出特殊值
查看>>
【洛天依】几首歌的翻唱(无伴奏)
查看>>
strcspn
查看>>
OpenSSL初瞻及本系列的博文的缘由
查看>>
ISO8583接口的详细资料
查看>>