码迷,mamicode.com
首页 > 编程语言 > 详细

Python3下map函数的问题

时间:2017-08-04 16:08:36      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:python   map函数   

今天在群里有人问题,他的Python程序在家里运行好好的,但在公司一运行,就出问题了,查来查去查不出来,于是我就把他的程序调转过来看了一下,发现又是Python2.7与Python3的问题。
代码是做了一个可定义任意位数的水仙花数函数

def fn(n):
    rs = []
    for i in range(pow(10,n-1),pow(10,n)):
        rs = map(int, str(i))
        sum = 0
        for k in range(0,len(rs)):
            sum = sum + pow(rs[k],n)
        if sum == i:
            print(i)
if __name__=="__main__":
    n = int(input("请输入正整数的位数:"))
    fn(n)


Python2.7下面运行结果:

请输入正整数的位数:5

54748

92727

93084

Process finished with exit code 0


但在Python3下面运行结果:

请输入正整数的位数:5

Traceback (most recent call last):

  File "D:/Program Files/JetBrains/PyCharm 2017.1.5/myPY/myPYPro/lesson001.py", line 18, in <module>

    fn(n)

  File "D:/Program Files/JetBrains/PyCharm 2017.1.5/myPY/myPYPro/lesson001.py", line 11, in fn

    for k in range(0,len(rs)):

TypeError: object of type ‘map‘ has no len()

Process finished with exit code 1

因为提示是:TypeError: object of type ‘map‘ has no len()
所以直接把代码简化,输出list看看
简化代码如下: 

rs = []
for i in range(100,1000):
    rs = map(int, str(i))
print(rs)


Python2.7下面运行结果:
[9, 9, 9]
Process finished with exit code 0

但在Python3下面运行结果:

<map object at 0x00C6E530>

Process finished with exit code 0


好吧,这就明白了,Python3下发生的一些新的变化,再查了一下文档,发现加入list就可以正常了
在Python3中,
rs = map(intstr(i))  要改成:rs = list(map(intstr(i)))

简化代码要改成如下:

rs = []
for i in range(100,1000):
    rs = list(map(int, str(i)))
print(rs)

 

Python3下面运行结果就正常了:
[9, 9, 9]
Process finished with exit code 0


之前就发布过一篇关于:Python 2.7.x 和 3.x 版本区别小结


基于两个版本的不一样,如果不知道将要把代码部署到哪个版本下,可以暂时在代码里加入检查版本号的代码:
import platform
platform.python_version() 

通过判断版本号来临时调整差异,不过现在只是过渡,以后大家都使用Python3以下版本后,就应该不需要这样做了。



Python3下map函数的问题

标签:python   map函数   

原文地址:http://zselaine.blog.51cto.com/8363392/1953595

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!