中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

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

1、除法相關

在python3之前,

print 13/4  #result=3

然而在這之后,卻變了!

print(13 / 4) #result=3.25

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

print(13 // 4) #result=3.25

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

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之前:

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

輸出的結果是:[5, 4, 3, 2, 1]

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

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

咦?根據報錯,意思是在這個函數中cmp不是一個合法的參數?為什么呢?查閱文檔才發現,在python3中,需要把cmp轉化為一個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)

這樣才能輸出結果!

具體可參考鏈接:Sorting HOW TO

3、map()函數返回值發生了變化

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

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>

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

向AI問一下細節

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

AI

冕宁县| 三明市| 海城市| 高要市| 九寨沟县| 广丰县| 沾化县| 开封市| 高唐县| 泌阳县| 东明县| 杂多县| 金昌市| 昌黎县| 成都市| 遂昌县| 缙云县| 浦北县| 玉树县| 嘉峪关市| 彭州市| 合山市| 雅安市| 镶黄旗| 勃利县| 嘉定区| 邹平县| 瑞金市| 公主岭市| 葫芦岛市| 康保县| 澳门| 盐池县| 兰州市| 同德县| 平潭县| 翼城县| 巴塘县| 黄山市| 鄂托克旗| 梧州市|