经常在处理文本时,比如memory初始化文件,或者解析log中的数据做运算时,会用到字符串转数字。
最常用的就是int(str, base=10)
,默认是处理十进制字符串,比如:
那其它进制呢?
带小数的字符串转数字的方法:
这个可以简单理解成格式化输出,用字符串的format函数就行了。在python的数据类型(三):字符串中已经有过format
函数的介绍。我们再举一些例子:
前面补0的方法:
format格式定义详见:
https://docs.python.org/3/library/string.html#formatspec
小数格式化成字符串的方法:
当按照官方文档,同时使用#和宽度时,实际出来的结果跟想像的不一样,如下:
实际是先加0x,再对整体补0。
但是python提供了=
代替>
来应对这种异常。
'='
Forces the padding to be placed after the sign (if any) but before the digits. This is used for printing fields in the form ‘+000000120’. This alignment option is only valid for numeric types. It becomes the default when ‘0’ immediately precedes the field width.
所以,解决办法是:
但有没有发现少了两个0?各位在使用时要留意,以免掉坑里。