符合語言習慣的 Python 優雅編程技巧
(點擊
上方公眾號
,可快速關注)
來源:安生
http://lovesoo.org/pythonic-python-programming.html
Python最大的優點之一就是語法簡潔,好的代碼就像偽代碼一樣,乾淨、整潔、一目了然。要寫出 Pythonic(優雅的、地道的、整潔的)代碼,需要多看多學大牛們寫的代碼,github 上有很多非常優秀的源代碼值得閱讀,比如:requests、flask、tornado,下面列舉一些常見的Pythonic寫法。
0. 程序必須先讓人讀懂,然後才能讓計算機執行。
「Programs must be written for people to read, and only incidentally for machines to execute.」
1. 交換賦值
##不推薦
temp = a
a = b
b = a
##推薦
a, b = b, a
# 先生成一個元組(tuple)對象,然後unpack
2. Unpacking
##不推薦 "David"
l = [
,
"Pythonista"
,"+1-514-555-1234"
]first_name = l[
0
]last_name = l[
1
]phone_number = l[
2
]##推薦
l = [
"David"
,"Pythonista"
,"+1-514-555-1234"
]first_name, last_name, phone_number = l
# Python 3 Only
first, *middle, last = another_list
3. 使用操作符in
##不推薦 if "apple" or "orange" or "berry" # 多次判斷
##推薦
if
fruitin
["apple"
,"orange"
,"berry"
]:# 使用 in 更加簡潔
4. 字元串操作
##不推薦
colors = [
"red"
,"blue"
,"green"
,"yellow"
]result =
""
for
sin
colors:result += s
# 每次賦值都丟棄以前的字元串對象, 生成一個新對象
##推薦
colors = [
"red"
,
"blue"
,"green"
,"yellow"
]result =
""
.join(colors)# 沒有額外的內存分配
5. 字典鍵值列表
##不推薦 for in
my_dict.keys():
# my_dict[key] ...
##推薦
for
keyin
my_dict:# my_dict[key] ...
# 只有當循環中需要更改key值的情況下,我們需要使用 my_dict.keys()
# 生成靜態的鍵值列表。
6. 字典鍵值判斷
##不推薦
if
my_dict.has_key(key):# ...do something with d[key]
##推薦
if
keyin
my_dict:# ...do something with d[key]
7. 字典 get 和 setdefault 方法
##不推薦 for in if not in 0 ##推薦 for in # 使用 get 方法 0 # 或者使用 setdefault 方法 0
navs = {}
navs[portfolio] =
navs[portfolio] += position * prices[equity]
navs = {}
navs[portfolio] = navs.get(portfolio,
navs.setdefault(portfolio,
navs[portfolio] += position * prices[equity]
8. 判斷真偽
##不推薦 if True # .... if 0 # ... if # ...
##推薦
if
x:# ....
if
items:# ...
9. 遍歷列表以及索引
##不推薦 "zero one two three" # method 1 0 for in print 1 # method 2 for in print
items =
i =
i +=
##推薦
items =
"zero one two three"
.split()for
i, itemin
enumerate(items):10. 列表推導
##不推薦 for in if
new_list = []
new_list.append(fn(item))
##推薦
new_list = [fn(item)
for
itemin
a_listif
condition(item)]11. 列表推導-嵌套
##不推薦 for in if for in if # do something... ##推薦 for in if for in if for in # do something...
gen = (item
12. 循環嵌套
##不推薦 for in for in for in # do something for x & y
##推薦
from
itertoolsimport
productfor
x, y, zin
product(x_list, y_list, z_list):# do something for x, y, z
13. 盡量使用生成器代替列表
##不推薦 def my_range (n)
i =
0
result = []
while
i < n:result.append(fn(i))
i +=
1
return
result# 返回列表
##推薦
def
my_range
(n)
:i =
0
result = []
while
i < n:yield
fn(i)# 使用生成器代替列表
i +=
1
*盡量用生成器代替列表,除非必須用到列表特有的函數。
14. 中間結果盡量使用imap/ifilter代替map/filter
##不推薦
reduce(rf, filter(ff, map(mf, a_list)))
##推薦
from
itertoolsimport
ifilter, imapreduce(rf, ifilter(ff, imap(mf, a_list)))
*lazy evaluation 會帶來更高的內存使用效率,特別是當處理大數據操作的時候。
15. 使用any/all函數
##不推薦 False for in if True break if # do something if found...
found =
found =
##推薦
if
any(condition(item)for
itemin
a_list):# do something if found...
16. 屬性(property)
=
##不推薦 class Clock (object)
def
__init__
(self)
:self.__hour =
1
def
setHour
(self, hour)
:if
25
> hour >0
: self.__hour = hourelse
:raise
BadHourExceptiondef
getHour
(self)
:return
self.__hour##推薦
class
Clock
(object)
:def
__init__
(self)
:self.__hour =
1
def
__setHour
(self, hour)
:if
25
> hour >0
: self.__hour = hourelse
:raise
BadHourExceptiondef
__getHour
(self)
:return
self.__hourhour = property(__getHour, __setHour)
17. 使用 with 處理文件打開
##不推薦 "some_file.txt" try # 其他文件操作.. finally
f = open(
data = f.read()
f.close()
##推薦
with
open("some_file.txt"
)as
f:data = f.read()
# 其他文件操作...
18. 使用 with 忽視異常(僅限Python 3)
##不推薦 try "somefile.txt" except pass
os.remove(
##推薦
from
contextlibimport
ignored# Python 3 only
with
ignored(OSError):os.remove(
"somefile.txt"
)19. 使用 with 處理加鎖
##不推薦 import
lock = threading.Lock()
lock.acquire()
try
:# 互斥操作...
finally
:lock.release()
##推薦
import
threadinglock = threading.Lock()
with
lock:# 互斥操作...
20. 參考
1) Idiomatic Python:
http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html
2) PEP 8: Style Guide for Python Code:
http://www.python.org/dev/peps/pep-0008/
【關於投稿】
如果大家有原創好文投稿,請直接給公號發送留言。
① 留言格式:
【投稿】+《 文章標題》+ 文章鏈接
② 示例:
【投稿】《不要自稱是程序員,我十多年的 IT 職場總結》:http://blog.jobbole.com/94148/
③ 最後請附上您的個人簡介哈~
看完本文有收穫?請轉
發分享給更多人
關注「P
ython開發者」,提升Python技能
※回歸樹的原理及其 Python 實現
※Python 中字元串拼接的 N 種方法
TAG:Python開發者 |