溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解Python3遷移接口變化采坑記

發(fā)布時間:2020-10-24 09:43:06 來源:腳本之家 閱讀:120 作者:qinjianhuang 欄目:開發(fā)技術

1、除法相關

在python3之前,

print 13/4  #result=3

然而在這之后,卻變了!

print(13 / 4) #result=3.25

"/”符號運算后是正常的運算結(jié)果,那么,我們要想只取整數(shù)部分怎么辦呢?原來在python3之后,“//”有這個功能:

print(13 // 4) #result=3.25

是不是感到很奇怪呢?下面我們再來看一組結(jié)果:

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()函數(shù)中cmp參數(shù)發(fā)生了變化(重要)

在python3之前:

def reverse_numeric(x, y):
  return y - x
print sorted([5, 2, 4, 1, 3], cmp=reverse_numeric) 

輸出的結(jié)果是:[5, 4, 3, 2, 1]

但是在python3中,如果繼續(xù)使用上面代碼,則會報如下錯誤:

TypeError: 'cmp' is an invalid keyword argument for this function

咦?根據(jù)報錯,意思是在這個函數(shù)中cmp不是一個合法的參數(shù)?為什么呢?查閱文檔才發(fā)現(xiàn),在python3中,需要把cmp轉(zhuǎn)化為一個key才可以:

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

為此,我們需要把代碼改成:

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)

這樣才能輸出結(jié)果!

具體可參考鏈接:Sorting HOW TO

3、map()函數(shù)返回值發(fā)生了變化

Python 2.x 返回列表,Python 3.x 返回迭代器。要想返回列表,需要進行類型轉(zhuǎn)換!

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 匿名函數(shù)
print(map(lambda x: x ** 2, [1, 2, 3, 4]))  # <map object at 0x000001E553CDC1D0>

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI