欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python map出错:map object at 0x0000000002B35588

程序员文章站 2022-04-02 22:57:28
...

这是因为在map中不能传入非iterators的参数。
例如一个出错的代码:

def str2float(s):
    def char2num(s):
        return{'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5,'6': 6, '7': 7, '8': 8, '9': 9 }[s]
print(s)
    return (map(char2num,s))  
print('str2float(\'123.456\') =', str2float('123456'))

就会输出:
python map出错:map object at 0x0000000002B35588
s是一个序列

相关标签: python map