python中str转int的方法

3,286次阅读
没有评论
python中str转int的方法

在python中使用过程中,我们常常会遇到数据类型转换的问题。本文小编整理了python中str转int的两种方法:map函数法和lambda表达式法。具体内容请看本文。

方法一:map函数法

map() 会根据提供的函数对指定序列做映射。

def square(x):
    return x ** 2
a = [1,2,3,4,5,6]
b = map(square,a)
b = list(b)
print(b)
#result:[1, 4, 9, 16, 25, 36]
 
print(list(map(lambda x,y:x + y ,[1,2,3,4,5],[10,20,30,40,50])))

#result:[11, 22, 33, 44, 55]

方法二:lambda表达式法

from functools import reduce
DIGITS = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}
def str2int(str):
    def char2num(s):
        return DIGITS[s]
    return reduce(lambda x,y:x*10+y,map(char2num,str))
str = '5632'
nums = str2int(str)
print('str-->int:',nums)

以上就是小编总结的python中str转int的两种方法,大家可以选择自己喜欢的方式进行转换哟~

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-05-12发表,共计673字。
新手QQ群:570568346,欢迎进群讨论 Python51学习