前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python3迁移接口变化采坑记

Python3迁移接口变化采坑记

作者头像
大黄大黄大黄
发布2019-02-25 11:31:09
3830
发布2019-02-25 11:31:09
举报

1、除法相关

在python3之前,

代码语言:javascript
复制
print 13/4   #result=3

然而在这之后,却变了!

代码语言:javascript
复制
print(13 / 4)  #result=3.25

"/”符号运算后是正常的运算结果,那么,我们要想只取整数部分怎么办呢?原来在python3之后,“//”有这个功能:

代码语言:javascript
复制
print(13 // 4)  #result=3.25

是不是感到很奇怪呢?下面我们再来看一组结果:

代码语言:javascript
复制
print(4 / 13)     # result=0.3076923076923077
print(4.0 / 13)   # result=0.3076923076923077
print(4 // 13)    # result=0
print(4.0 // 13)  # result=0.0
print(13 / 4)     # result=3.25
print(13.0 / 4)   # result=3.25
print(13 // 4)    # result=3
print(13.0 // 4)  # result=3.0

2、Sort()和Sorted()函数中cmp参数发生了变化(重要)

在python3之前:

代码语言:javascript
复制
def reverse_numeric(x, y):
    return y - x
print sorted([5, 2, 4, 1, 3], cmp=reverse_numeric) 

输出的结果是:[5, 4, 3, 2, 1]

但是在python3中,如果继续使用上面代码,则会报如下错误:

代码语言:javascript
复制
TypeError: 'cmp' is an invalid keyword argument for this function

咦?根据报错,意思是在这个函数中cmp不是一个合法的参数?为什么呢?查阅文档才发现,在python3中,需要把cmp转化为一个key才可以:

代码语言:javascript
复制
def cmp_to_key(mycmp):
    'Convert a cmp= function into a key= function'
    class K:
        def __init__(self, obj, *args):
            self.obj = obj
        def __lt__(self, other):
            return mycmp(self.obj, other.obj) < 0
        def __gt__(self, other):
            return mycmp(self.obj, other.obj) > 0
        def __eq__(self, other):
            return mycmp(self.obj, other.obj) == 0
        def __le__(self, other):
            return mycmp(self.obj, other.obj) <= 0
        def __ge__(self, other):
            return mycmp(self.obj, other.obj) >= 0
        def __ne__(self, other):
            return mycmp(self.obj, other.obj) != 0
    return K

为此,我们需要把代码改成:

代码语言:javascript
复制
from functools import cmp_to_key

def comp_two(x, y):
    return y - x

numList = [5, 2, 4, 1, 3]
numList.sort(key=cmp_to_key(comp_two))
print(numList)

这样才能输出结果!

具体可参考链接:Sorting HOW TO


3、map()函数返回值发生了变化

Python 2.x 返回列表,Python 3.x 返回迭代器。要想返回列表,需要进行类型转换!

代码语言:javascript
复制
def square(x):
    return x ** 2

map_result = map(square, [1, 2, 3, 4])
print(map_result)        # <map object at 0x000001E553CDC1D0>
print(list(map_result))  # [1, 4, 9, 16]

# 使用 lambda 匿名函数
print(map(lambda x: x ** 2, [1, 2, 3, 4]))   # <map object at 0x000001E553CDC1D0>

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年09月28日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档