您好,登錄后才能下訂單哦!
這篇文章給大家介紹python中變量命名規(guī)范有哪些,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
1、使用有意義而且可讀的變量名
差
ymdstr = datetime.date.today().strftime("%y-%m-%d")
鬼知道 ymd 是什么?
好
current_date: str = datetime.date.today().strftime("%y-%m-%d")
看到 current_date,一眼就懂。
2、同類型的變量使用相同的詞匯
差 這三個(gè)函數(shù)都是和用戶相關(guān)的信息,卻使用了三個(gè)名字
get_user_info() get_client_data() get_customer_record()
好 如果實(shí)體相同,你應(yīng)該統(tǒng)一名字
get_user_info() get_user_data() get_user_record()
極好 因?yàn)?Python 是一門(mén)面向?qū)ο蟮恼Z(yǔ)言,用一個(gè)類來(lái)實(shí)現(xiàn)更加合理,分別用實(shí)例屬性、property 方法和實(shí)例方法來(lái)表示。
class User: info : str @property def data(self) -> dict: # ... def get_record(self) -> Union[Record, None]: # ...
3、使用可搜索的名字
大部分時(shí)間你都是在讀代碼而不是寫(xiě)代碼,所以我們寫(xiě)的代碼可讀且可被搜索尤為重要,一個(gè)沒(méi)有名字的變量無(wú)法幫助我們理解程序,也傷害了讀者,記?。捍_??伤阉?。
差
time.sleep(86400);
What the fuck, 上帝也不知道86400是個(gè)什么概念
好
# 在全局命名空間聲明變量,一天有多少秒 SECONDS_IN_A_DAY = 60 * 60 * 24 time.sleep(SECONDS_IN_A_DAY)
清晰多了。
4、使用可自我描述的變量
差
address = 'One Infinite Loop, Cupertino 95014' city_zip_code_regex = r'^[^,\\]+[,\\\s]+(.+?)\s*(\d{5})?$' matches = re.match(city_zip_code_regex, address) save_city_zip_code(matches[1], matches[2])
matches[1] 沒(méi)有自我解釋自己是誰(shuí)的作用
一般
address = 'One Infinite Loop, Cupertino 95014' city_zip_code_regex = r'^[^,\\]+[,\\\s]+(.+?)\s*(\d{5})?$' matches = re.match(city_zip_code_regex, address) city, zip_code = matches.groups() save_city_zip_code(city, zip_code)
你應(yīng)該看懂了, matches.groups() 自動(dòng)解包成兩個(gè)變量,分別是 city,zip_code
好
address = 'One Infinite Loop, Cupertino 95014' city_zip_code_regex = r'^[^,\\]+[,\\\s]+(?P<city>.+?)\s*(?P<zip_code>\d{5})?$' matches = re.match(city_zip_code_regex, address) save_city_zip_code(matches['city'], matches['zip_code'])
5、 不要強(qiáng)迫讀者猜測(cè)變量的意義,明了勝于晦澀
差
seq = ('Austin', 'New York', 'San Francisco') for item in seq: do_stuff() do_some_other_stuff() # ... # Wait, what's `item` for again? dispatch(item)
seq 是什么?序列?什么序列呢?沒(méi)人知道,只能繼續(xù)往下看才知道。
好
locations = ('Austin', 'New York', 'San Francisco') for location in locations: do_stuff() do_some_other_stuff() # ... dispatch(location)
用 locations 表示,一看就知道這是幾個(gè)地區(qū)組成的元組
6、不要添加無(wú)謂的上下文
如果你的類名已經(jīng)可以告訴了你什么,就不要在重復(fù)對(duì)變量名進(jìn)行描述
差
class Car: car_make: str car_model: str car_color: str
感覺(jué)畫(huà)蛇添足,如無(wú)必要,勿增實(shí)體。
好
class Car: make: str model: str color: str
7、使用默認(rèn)參數(shù)代替短路運(yùn)算和條件運(yùn)算
差
def create_micro_brewery(name): name = "Hipster Brew Co." if name is None else name slug = hashlib.sha1(name.encode()).hexdigest() # etc.
好
def create_micro_brewery(name: str = "Hipster Brew Co."): slug = hashlib.sha1(name.encode()).hexdigest() # etc.
關(guān)于python中變量命名規(guī)范有哪些就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。