中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

寫出優雅的python小技巧

發布時間:2020-08-03 11:58:46 來源:億速云 閱讀:188 作者:清晨 欄目:編程語言

這篇文章將為大家詳細講解有關寫出優雅的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小技巧就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平安县| 秭归县| 巴彦淖尔市| 丁青县| 忻州市| 自贡市| 南漳县| 句容市| 石景山区| 漳州市| 前郭尔| 禄丰县| 永城市| 上饶市| 山丹县| 永福县| 凤阳县| 古丈县| 米泉市| 禹城市| 纳雍县| 唐海县| 新巴尔虎左旗| 房产| 阳泉市| 瑞安市| 西峡县| 邹平县| 青阳县| 永丰县| 亳州市| 辽中县| 平乡县| 两当县| 会东县| 绵竹市| 额尔古纳市| 浦城县| 隆林| 阳新县| 东乌珠穆沁旗|