您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關寫出優雅的python小技巧,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
在Python社區文化的澆灌下,演化出了一種獨特的代碼風格,去指導如何正確地使用Python,這就是常說的pythonic。一般說地道(idiomatic)的python代碼,就是指這份代碼很pythonic。pythonic的代碼簡練,明確,優雅,絕大部分時候執行效率高。閱讀pythonic
的代碼能體會到“代碼是寫給人看的,只是順便讓機器能運行”暢快。
那么如何寫出優雅的python代碼呢?下面的內容或許會對你有幫助
遍歷一個范圍內的數字
for i in [0, 1, 2, 3, 4, 5]: print i ** 2 for i in range(6): print i ** 2
更好的方法
for i in xrange(6): print i ** 2
xrange會返回一個迭代器,用來一次一個值地遍歷一個范圍。這種方式會比range更省內存。xrange在Python 3中已經改名為range。
遍歷一個集合
colors = ['red', 'green', 'blue', 'yellow'] for i in range(len(colors)): print colors[i]
更好的方法
for color in colors: print color
反向遍歷
colors = ['red', 'green', 'blue', 'yellow'] for i in range(len(colors)-1, -1, -1): print colors[i]
更好的方法
for color in reversed(colors): print color
遍歷一個集合及其下標
colors = ['red', 'green', 'blue', 'yellow'] for i in range(len(colors)): print i, '--->', colors[i]
更好的方法
for i, color in enumerate(colors): print i, '--->', color
這種寫法效率高,優雅,而且幫你省去親自創建和自增下標。
當你發現你在操作集合的下標時,你很有可能在做錯事。
遍歷兩個集合
names = ['raymond', 'rachel', 'matthew'] colors = ['red', 'green', 'blue', 'yellow'] n = min(len(names), len(colors)) for i in range(n): print names[i], '--->', colors[i] for name, color in zip(names, colors): print name, '--->', color
更好的方法
for name, color in izip(names, colors): print name, '--->', color
關于寫出優雅的python小技巧就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。