本內(nèi)容參考:Effective Python趟咆,有時間的同學(xué)可以購買原書籍閱讀
一:關(guān)鍵詞
- Python:多指 python3 版本狐肢,本人使用的是 Python3.6
二:編碼風(fēng)格
代碼風(fēng)格:https://www.python.org/dev/peps/pep-0008/#introduction 5
注釋風(fēng)格:https://www.python.org/dev/peps/pep-0257/ 1
Pylint 是 Python 源碼靜態(tài)分析工具磕道,可檢查代碼是否符合 PEP 8 風(fēng)格指南
可在 pycharm 中下載 Pylint 插件胯甩,在左下角會標(biāo)識出 Pylint 字樣迹辐,點(diǎn)擊瀏覽即可審查代碼,Pylint 的檢查非常嚴(yán)格:
[image1371×923 152 KB](https://ceshiren.com/uploads/default/original/2X/8/832bd75ba665e286255956e15b615255414a4053.png)
三:編碼
Python3 有兩種字符序列類型: str 和 bytes 憔晒,其中 bytes 的實(shí)例是字節(jié)藻肄,其對應(yīng) 8 位二進(jìn)制數(shù)據(jù), str 的實(shí)例包括 Unicode 字符拒担,可以用 utf-8 編碼方式把 Unicode 字符轉(zhuǎn)為二進(jìn)制數(shù)據(jù)嘹屯,反之同理。Python3 使用 encode()
和 decode()
分別對應(yīng)上述操作:
在程序內(nèi)部从撼,建議使用 Unicode 州弟,把任何外部輸入轉(zhuǎn)換為 Unicode ,而對外輸出則采用 bytes 。這樣可以保證外部編碼不影響內(nèi)部使用呆馁,同時輸出穩(wěn)定(都是 bytes )桐经。以下代碼實(shí)現(xiàn)了 二進(jìn)制 與 Unicode 格式互轉(zhuǎn):
def to_str(bytes_or_str):
if isinstance(bytes_or_str, bytes):
value = bytes_or_str.decode('utf-8')
else:
value = bytes_or_str
return value # Instance of bytes
def to_bytes(bytes_or_str):
if isinstance(bytes_or_str, str):
value = bytes_or_str.encode('utf-8')
else:
value = bytes_or_str
return value # Instance of str
Python 的 open()
方法默認(rèn)使用 encoding()
方法,即要求傳一個 Unicode 字符浙滤,它會幫你轉(zhuǎn)成二進(jìn)制,如果你傳的是二進(jìn)制數(shù)據(jù)气堕,就會報錯
參考以下代碼及輸出結(jié)果纺腊, os.urandom()
產(chǎn)生隨機(jī)的 bytes 值,把它寫入 random.bin 文件會報錯:
def main():
with open('./random.bin', 'w') as f:
f.write(os.urandom(15))
if __name__ == '__main__':
main()
[image893×217 30.7 KB](https://ceshiren.com/uploads/default/original/2X/5/529ac8b86cc349209ee0deda651fff7efd6e1c58.png)
以下是官方源碼給出的注釋:
In text mode, if encoding is not specified the encoding used is platform dependent: locale.getpreferredencoding(False) is called to get the current locale encoding.
只需要將寫入模式改為二進(jìn)制寫入即可:
```python
def main():
with open('./random.bin', 'wb') as f:
f.write(os.urandom(15))
if __name__ == '__main__':
main()
四:輔助函數(shù)
Python 有很多強(qiáng)大的特性茎芭,如果過度使用揖膜,會讓代碼晦澀難懂,考慮以下代碼及返回結(jié)果:
from urllib.parse import parse_qs
my_values=parse_qs('red=5&blue=0&green=',
keep_blank_values=True)
print(repr(my_values))
>>>
{'red': ['5'], 'blue': ['0'], 'green': ['']}
三種顏色都有返回值梅桩,用 get() 方法獲取內(nèi)容時壹粟,會打出下面內(nèi)容:
print('Red: ', my_values.get('red'))
print('Green: ', my_values.get('green'))
print('xxxx: ', my_values.get('xxxx'))
>>>
Red: ['5']
Green: ['']
xxxx: None
發(fā)現(xiàn)一個問題,當(dāng)原 list 為空時宿百, get 方法返回空趁仙,當(dāng)原 key 不存在時(比如xxxx), get 方法返回 None 垦页,現(xiàn)在利用 Python 的特性雀费,將上述代碼優(yōu)化。 Python 中空字符串痊焊、空
列表及零值都是 False :
# 優(yōu)化一
print('Red: ', my_values.get('red', [''])[0] or 0)
print('Green: ', my_values.get('green', [''])[0] or 0)
# 當(dāng)字典沒有這個值時盏袄, get 方法會返回第二個參數(shù)值 ['']
print('xxxx: ', my_values.get('xxxx', [''])[0] or 0)
>>>
Red: 5
Green: 0
xxxx: 0
# 優(yōu)化二
read = my_values.get('red', [''])
print('Red: ', read[0] if read[0] else 0)
無論是優(yōu)化一還是優(yōu)化二,都讓代碼少薄啥,但復(fù)雜晦澀辕羽。此時不如向特性做出妥協(xié),使用傳統(tǒng)的 if/else 語法垄惧,把要實(shí)現(xiàn)的功能封裝到函數(shù)中刁愿,稱之為輔助函數(shù):
def get_first_int(value: dict, key, default=0):
found = value.get(key, [''])
if found[0]:
found = found[0]
else:
found = default
return found
print('Red: ', get_first_int(my_values, 'red'))
五:切割序列
Python 可對序列進(jìn)行切割,基本寫法是 list[start:end] 赘艳,其中 start 所指元素會在切割后的范圍內(nèi)酌毡, 而 end 所指元素不會被包括在切割結(jié)果中。查看下面代碼及輸出結(jié)果:
a = ['a','b','c','d','e','f','g','h','i']
print('First four:',a[:4])
print('last four:',a[-4:])
print('Middle three:',a[3:-3])
>>>
First four: ['a', 'b', 'c', 'd']
last four: ['f', 'g', 'h', 'i']
Middle three: ['d', 'e', 'f']
start 和 end 可以越界使用蕾管,因此可以限定輸入序列的最大長度枷踏,比如限定長度為 20 :
a=['a', 'v', 'c']
print(a[:20])
print(a[-20:])
>>>
['a', 'v', 'c']
['a', 'v', 'c']
對切割后的內(nèi)容進(jìn)行任何操作,都不會影響到原 list 掰曾,比如:
a=['a', 'v', 'c']
b=a[1:]
b[0]=10
print('a: ' , a)
print('b: ', b)
>>>
a: ['a', 'v', 'c']
b: [10, 'c']
可以對 list 中的值進(jìn)行擴(kuò)張旭蠕,把列表中指定范圍的值替換成新值,比如:
a1 = ['a', 'v', 'c', 'h']
a1[0:10]=['f','f']
print('a1: ', a1)
a2 = ['a', 'v', 'c', 'h']
a2[2:3]=['f','f']
print('a2: ', a2)
>>>
a1: ['f', 'f']
a2: ['a', 'v', 'f', 'f', 'h']
六:單次切片不同時指定 start、end 和 stride
Python 提供更激進(jìn)的切片操作 somelist[start:end:stride]
掏熬,可以指定步進(jìn)值 stride 實(shí)現(xiàn)取出奇索引和偶索引:
a = ['i','love','hogwarts','every','day']
odds = a[::2]
evens = a[1::2]
print(odds)
print(evens)
>>>
['i', 'hogwarts', 'day']
['love', 'every']
甚至可以進(jìn)行反轉(zhuǎn)操作:
a = ['i', 'love', 'hogwarts', 'every', 'day']
b = b'abcdefgh'
reverse_a = a[::-1]
reverse_b = b[::-1]
print(reverse_a)
print(reverse_b)
>>>
['day', 'every', 'hogwarts', 'love', 'i']
b'hgfedcba'
這個技巧適合字節(jié)串和 ASCII 字符佑稠,對于編碼成 UTF-8 字節(jié)串的 Unicode ,會出問題:
a = '霍格沃茲測試學(xué)院'
b = a.encode('utf-8')
c = b[::-1]
d = c.decode('utf-8')
print(d)
>>>
Traceback (most recent call last):
File "xxx", line 5, in <module>
d = c.decode('utf-8')
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa2 in position 0: invalid start byte
另外旗芬,2::2 舌胶, -2::-2 , -2:2:-2 和 2:2:-2 的意思同理疮丛,如果參數(shù)過多幔嫂,意思會非常難以理解,不應(yīng)該把 stride 與 start 和 end 寫在一起誊薄。盡量采用正值 stride 履恩,省略 start 和 end 索引。如果一定要配合 start 或 end 索引來使用 stride呢蔫,可以先步進(jìn)式切片切心,把切割結(jié)果賦給變量,然后在變量上再進(jìn)行切割片吊。也可以使用 islide 绽昏,它不允許 start , end 或 stride 有負(fù)值定鸟。
a = ['i','love','hogwarts','every','day']
b = a[::2]
c = b[1:-1]
print(c)
>>>
['hogwarts']
七:推導(dǎo)式
Python 可根據(jù)一份 list 來制作另一份而涉,對 dict 也適用,參考以下代碼及執(zhí)行結(jié)果:
a = ['i','love','hogwarts','every','day']
b1 = [k+'ff' for k in a]
b2 = [k+'ff' for k in a if k == 'every']
print('b1: ',b1)
print('b2: ',b2)
>>>
b1: ['iff', 'loveff', 'hogwartsff', 'everyff', 'dayff']
b2: ['everyff']
當(dāng)然联予, map 與 filter 也可以做到上述效果啼县,但很難理解。字典(dict)和集合(set)也有類似的推導(dǎo)機(jī)制沸久,參考以下執(zhí)行結(jié)果:
a = {'a': 'i', 'b': 'love', 'c': 'hogwarts', 'd': 'every', 'e': 'day'}
b1 = {key:value+'ff' for key, value in a.items()}
b2 = {key:value+'ff' for key, value in a.items() if key == 'd' or key == 'a'}
print('b1: ', b1)
print('b2: ', b2)
>>>
b1: {'a': 'iff', 'b': 'loveff', 'c': 'hogwartsff', 'd': 'everyff', 'e': 'dayff'}
b2: {'a': 'iff', 'd': 'everyff'}
八:不要使用含有兩個以上表達(dá)式的列表推導(dǎo)
todo
更多技術(shù)文章可點(diǎn)擊獲取 http://qrcode.testing-studio.com/f?from=jianshu&url=https://ceshiren.com/t/topic/3822