日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

你應(yīng)該使用Python3里的這些新特性

系統(tǒng) 1675 0

概述

由于Python2的官方維護(hù)期即將結(jié)束,越來越多的Python項(xiàng)目從Python2切換到了Python3。可是,在實(shí)際的工作中,我發(fā)現(xiàn)好多人都是在用Python2的思維去寫Python3的代碼,Python3給我們提供了很多新的、很方便的特性,可以幫助我們快速的編寫代碼。

f-strings (3.6+)

在Python里面,我們經(jīng)常使用format函數(shù)來格式化字符串,例如:

          
            user = "Jane Doe"
action = "buy"

log_message = 'User {} has logged in and did an action {}.'.format(
  user,
  action
)

print(log_message)
輸出:User Jane Doe has logged in and did an action buy.
          
        

Python3里面提供了一個(gè)更加靈活方便的方法來格式化字符串,叫做f-strings。上面的代碼可以這樣實(shí)現(xiàn):

          
            user = "Jane Doe"
action = "buy"

log_message = f'User {user} has logged in and did an action {action}.'
print(log_message)
輸出: User Jane Doe has logged in and did an action buy.
          
        

Pathlib (3.4+)

f-strings這個(gè)功能太方便了,但是對于文件路勁這樣的字符串,Python還提供了更加方便的處理方法。Pathlib是Python3提供的一個(gè)處理文件路勁的庫。例如:

          
            from pathlib import Path

root = Path('post_sub_folder')
print(root)
輸出結(jié)果: post_sub_folder

path = root / 'happy_user'

# 輸出絕對路勁
print(path.resolve())
輸出結(jié)果:/root/post_sub_folder/happy_user
          
        

Type hinting (3.5+)

靜態(tài)與動(dòng)態(tài)類型是軟件工程中的一個(gè)熱門話題,每個(gè)人都有不同的看法,Python作為一個(gè)動(dòng)態(tài)類型語言,在Python3中也提供了Type hinting功能,例如:

          
            def sentence_has_animal(sentence: str) -> bool:
  return "animal" in sentence

sentence_has_animal("Donald had a farm without animals")
# True
          
        

Enumerations (3.4+)

Python3提供的Enum類讓你很容就能實(shí)現(xiàn)一個(gè)枚舉類型:

          
            from enum import Enum, auto

class Monster(Enum):
    ZOMBIE = auto()
    WARRIOR = auto()
    BEAR = auto()
    
print(Monster.ZOMBIE)
輸出: Monster.ZOMBIE
          
        

Python3的Enum還支持比較和迭代。

          
            for monster in Monster:
    print(monster)

輸出: Monster.ZOMBIE
     Monster.WARRIOR
     Monster.BEAR
          
        

Built-in LRU cache (3.2+)

緩存是現(xiàn)在的軟件領(lǐng)域經(jīng)常使用的技術(shù),Python3提供了一個(gè)lru_cache裝飾器,來讓你更好的使用緩存。下面有個(gè)實(shí)例:

          
            import time

def fib(number: int) -> int:
    if number == 0: return 0
    if number == 1: return 1
    
    return fib(number-1) + fib(number-2)

start = time.time()
fib(40)
print(f'Duration: {time.time() - start}s')
# Duration: 30.684099674224854s
          
        

現(xiàn)在我們可以使用lru_cache來優(yōu)化我們上面的代碼,降低代碼執(zhí)行時(shí)間。

          
            from functools import lru_cache

@lru_cache(maxsize=512)
def fib_memoization(number: int) -> int:
    if number == 0: return 0
    if number == 1: return 1
    
    return fib_memoization(number-1) + fib_memoization(number-2)

start = time.time()
fib_memoization(40)
print(f'Duration: {time.time() - start}s')
# Duration: 6.866455078125e-05s
          
        

Extended iterable unpacking (3.0+)

廢話不多說,直接上代碼,文檔在這

          
            head, *body, tail = range(5)
print(head, body, tail)
輸出: 0 [1, 2, 3] 4

py, filename, *cmds = "python3.7 script.py -n 5 -l 15".split()
print(py)
print(filename)
print(cmds)
輸出:python3.7
     script.py
     ['-n', '5', '-l', '15']

first, _, third, *_ = range(10)
print(first, third)
輸出: 0 2
          
        

Data classes (3.7+)

Python3提供data class裝飾器來讓我們更好的處理數(shù)據(jù)對象,而不用去實(shí)現(xiàn) init__() 和 __repr() 方法。假設(shè)如下的代碼:

          
            class Armor:
    
    def __init__(self, armor: float, description: str, level: int = 1):
        self.armor = armor
        self.level = level
        self.description = description
                 
    def power(self) -> float:
        return self.armor * self.level
    
armor = Armor(5.2, "Common armor.", 2)
armor.power()
# 10.4

print(armor)
# <__main__.Armor object at 0x7fc4800e2cf8>
          
        

使用data class實(shí)現(xiàn)上面功能的代碼,這么寫:

          
            from dataclasses import dataclass

@dataclass
class Armor:
    armor: float
    description: str
    level: int = 1
    

    def power(self) -> float:
        return self.armor * self.level
    
armor = Armor(5.2, "Common armor.", 2)
armor.power()
# 10.4

print(armor)
# Armor(armor=5.2, description='Common armor.', level=2)
          
        

Implicit namespace packages (3.3+)

通常情況下,Python通過把代碼打成包(在目錄中加入__init__.py實(shí)現(xiàn))來復(fù)用,官方給的示例如下:

          
            sound/                          Top-level package
      __init__.py               Initialize the sound package
      formats/                  Subpackage for file format conversions
              __init__.py
              wavread.py
              wavwrite.py
              aiffread.py
              aiffwrite.py
              auread.py
              auwrite.py
              ...
      effects/                  Subpackage for sound effects
              __init__.py
              echo.py
              surround.py
              reverse.py
              ...
      filters/                  Subpackage for filters
              __init__.py
              equalizer.py
              vocoder.py
              karaoke.py
          
        

在Python2里,如上的目錄結(jié)構(gòu),每個(gè)目錄都必須有__init__.py文件,一遍其他模塊調(diào)用目錄下的python代碼,在Python3里,通過 Implicit Namespace Packages可是不使用__init__.py文件

          
            sound/                          Top-level package
      __init__.py               Initialize the sound package
      formats/                  Subpackage for file format conversions
              wavread.py
              wavwrite.py
              aiffread.py
              aiffwrite.py
              auread.py
              auwrite.py
              ...
      effects/                  Subpackage for sound effects
              echo.py
              surround.py
              reverse.py
              ...
      filters/                  Subpackage for filters
              equalizer.py
              vocoder.py
              karaoke.py
          
        

結(jié)語

這篇文章只列出了一下部分Python3的新功能,我希望這篇文章向您展示了部分您以前不知道的Python 3新功能,并且希望能幫助您編寫更清晰,更直觀的代碼。


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會(huì)非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 龙陵县| 安达市| 左权县| 英吉沙县| 贵南县| 建昌县| 宝丰县| 安塞县| 盈江县| 中江县| 石狮市| 新郑市| 镇平县| 军事| 鹿泉市| 华亭县| 潢川县| 保亭| 咸丰县| 久治县| 汾西县| 芦山县| 宣武区| 钦州市| 六枝特区| 大宁县| 鸡东县| 凯里市| 股票| 洛浦县| 临海市| 澄江县| 长武县| 商洛市| 浦北县| 莱阳市| 井冈山市| 罗田县| 林口县| 伽师县| 菏泽市|