你所不知道的Python奇技淫巧

2022-07-03 15:36:09 字數 3847 閱讀 5536

有時候你會看到很cool的python**,你驚訝於它的簡潔,它的優雅,你不由自主地讚嘆:竟然還能這樣寫。其實,這些優雅的**都要歸功於python的特性,只要你能掌握這些pythonic的技巧,你一樣可以寫出像詩一樣的python**。

你是不是經常對呼叫模組時輸入一長串模組索引感到頭疼?說實在的,數量少的時候或許還可以勉強忍受,一旦程式規模上去了,這也是一項不容小覷的工程。

#bad

import urllib.request

url = r''

req = urllib.request.request(url)

response = urllib.request.urlopen(req)

#good

form urllib import request

url = r''

req = request.request(url)

response = request.urlopen(req)

這樣是不是節省了一點時間呢?

但是這樣簡寫可能造成模組名重複的問題,如何解決呢?

from module_a import fun as a_fun

from module_b import fun as b_fun

這樣的方法還適用於模組名比較長的模組,筆者印象最深的就是beautifulsoup模組

from bs4 import beautifulsoup as bs

html = '''

......

'''soup = bs(html)

省時省力。

這是乙個非常有用的功能,可惜很少人知道。

當你在互動介面敲**,獲得乙個臨時結果,卻沒有用變數名去儲存它的時候,可以用"_"來獲取最近一次臨時結果。

>>> 1 + 1

2>>> _

2

在"_"中儲存最後輸出的值。這在互動式模式中是非常有用的,當你在過程中沒有儲存計算結果,或者你想看最後一步執行的輸出結果。

這是乙個老生常談的問題,當我們需要將數個字串合併的時候,習慣性的使用"+"作為連線字串的手段。

然而,由於不可變物件在記憶體中生成後無法修改,合併後的字串會重新開闢出一塊記憶體空間來儲存。這樣像滾雪球一樣,將記憶體快速消耗殆盡。

# bad

string = ['a','b','c','d','e','f','g','h']

def fun(string):

all_string = ''

for i in string:

all_string += i

return all_string

# good

string = ['a','b','c','d','e','f','g,'h']

def fun(string):

all_string = ''.join(string)

return all_string

它是python的內建函式,zip函式接受任意多個(包括0個和1個)序列作為引數,返回乙個包含tuple的list。zip()函式可以在很多場景簡化你的**。

矩陣的行列互換

# bad

a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

re_a = [[row[col] for row in a] for col in range(len(a))]

>>> [[1, 4, 7], [2, 5, 8], [3, 6, 9]]

# good

a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

re_a = list(zip(*a))

>>> [[1, 4, 7], [2, 5, 8], [3, 6, 9]]

交換dict的鍵值

# bad

a =

def reverse_dict(a):

new_dict = {}

for k,v in m.items():

new_dict[v] = k

return new_dict

# good

a =

def reverse_dict(a):

k = a.keys()

v = a.values()

new_dict = dict(zip(v, k))

return new_dict

合併list相鄰項

a = [1, 2, 3, 4, 5, 6]

list(zip( a[::2], a[1::2] ))

>>> [(1, 2), (3, 4), (5, 6)]

# bad

tmp = a

a = b

b = tmp

#good

a, b = b, a

a = [8, 23, 45, 12, 78]

for index, value in enumerate(a):

print(index , value)

try:

pass

except (exceptiona,exceptionb,.....) as e:

pass

a = [1, 2, 3, 4, 5, 6]

list(zip( *[iter(a)]*2 ))

>>> [(1, 2), (3, 4), (5, 6)]

a = ['a', 'b', 'c', 'd', 'e', 'f']

a_i = a.index(a)

>>> 0

#bad

a = 'python is a powerful languange.'

list_a = list(a)

list_a.reverse()

re_a = ''.join(list_a)

#good

a = 'python is a powerful languange.'

re_a = a[::-1]

x = 2

if 1< x <3:

print(x)

>>> 2

if 1< x >0:

print(x)

>>> 2

平時在使用類似檔案的流物件時,使用完畢後要呼叫close方法關閉。with…as語句提供了乙個非常方便的替代方法:open開啟檔案後將返回的檔案流物件賦值給f,然後在with語句塊中使用。with語句塊完畢之後,會隱藏地自動關閉檔案。

with open('nothing.txt','r') as f:

f.read()

crash = dict(zip(range(10 **0xa), range(10 **0xa)))
更多python相關技巧:/blog/

你所不知道的Python奇技淫巧

有時候你會看到很cool的python 你驚訝於它的簡潔,它的優雅,你不由自主地讚嘆 竟然還能這樣寫。其實,這些優雅的 都要歸功於python的特性,只要你能掌握這些pythonic的技巧,你一樣可以寫出像詩一樣的python 你是不是經常對呼叫模組時輸入一長串模組索引感到頭疼?說實在的,數量少的時...

你所不知道的 const

const 常量是不可修改的,也就是說only read,例如 const int nbuffsize 512 nbuffsize 0 error就是因為const 常量不能修改,所以定義時必須初始化預設在全域性作用域中定義的非const變數可以在整個程式中訪問,例如 int ncounter ex...

你所不知道的background

今天要說說css中background這個屬性裡面的大學問。在乙個宣告中設定所有的背景屬性 body 看到這串 你怕了嗎?知道他們都代表啥意思嘛?不要捉急,來看展開式。展開式 background color設定元素的背景顏色,不能設定到外邊距,可以繼承父級的背景顏色,預設為透明。backgroun...