python小程序,将str转换为int型,将int型转换为str型

将str型转换为int型from functools import reduce
>>> def fn(x, y):
...     return x * 10 + y
...
>>> def char2num(s):
...     digits = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}
...     return digits[s]
...
>>> reduce(fn, map(char2num, '12345'))

将int型转换为str型
list(map(str, [1, 2, 3, 4, 5, 6, 7, 8, 9]))
['1', '2', '3', '4', '5', '6', '7', '8', '9']

int()函数可以把字符串转换为整数

int('12345')
12345
int() 函数还提供额外的 base 参数,默认值为 10 。如果传入 base 参数,就可以做N进制的转换:
>>> int('12345', base=8)
5349



你可能感兴趣的:(python基础)