首页 > 编程语言 > 详细

Python编程惯例

时间:2020-01-02 18:57:14      阅读:75      评论:0      收藏:0      [点我收藏+]

1. 让代码既可以被导入又可以被执行。

if __name__ == ‘__main__‘:

2. 用下面的方式判断逻辑“真”或“假”。

if x:
if not x:

好的代码:
name = 'jackfrued'
fruits = ['apple', 'orange', 'grape']
owners = {'1001': '骆昊', '1002': '王大锤'}
if name and fruits and owners:
    print('I love fruits!')

不好的代码:
name = 'jackfrued'
fruits = ['apple', 'orange', 'grape']
owners = {'1001': '骆昊', '1002': '王大锤'}
if name != '' and len(fruits) > 0 and owners != {}:
    print('I love fruits!')

3. 善于使用in运算符。

if x in items: # 包含
for x in items: # 迭代

好的代码:
name = 'Hao LUO'
if 'L' in name:
print('The name has an L in it.')

不好的代码:
name = 'Hao LUO'
if name.find('L') != -1:
    print('The name has an L in it.')

4. 不使用临时变量交换两个值。

a, b = b, a

5. 用序列构建字符串。

好的代码:
chars = ['j', 'a', 'c', 'k', 'f', 'r', 'u', 'e', 'd']
name = ''.join(chars)
print(name)  # jackfrued

不好的代码:
chars = ['j', 'a', 'c', 'k', 'f', 'r', 'u', 'e', 'd']
name = ''
for char in chars:
    name += char
print(name)  # jackfrued

6. EAFP优于LBYL。

EAFP - Easier to Ask Forgiveness than Permission.
LBYL - Look Before You Leap.
好的代码:
d = {'x': '5'}
try:
    value = int(d['x'])
    print(value)
except (KeyError, TypeError, ValueError):
    value = None

不好的代码:
d = {'x': '5'}
if 'x' in d and isinstance(d['x'], str) and d['x'].isdigit():
    value = int(d['x'])
    print(value)
else:
    value = None

7. 使用enumerate进行迭代。

好的代码:
fruits = ['orange', 'grape', 'pitaya', 'blueberry']
for index, fruit in enumerate(fruits):
    print(index, ':', fruit)

不好的代码:
fruits = ['orange', 'grape', 'pitaya', 'blueberry']
index = 0
for fruit in fruits:
    print(index, ':', fruit)
    index += 1

8. 用生成式生成列表。

好的代码:
data = [7, 20, 3, 15, 11]
result = [num * 3 for num in data if num > 10]
print(result)  # [60, 45, 33]

不好的代码:
data = [7, 20, 3, 15, 11]
result = []
for i in data:
    if i > 10:
        result.append(i * 3)
print(result)  # [60, 45, 33]

9. 用zip组合键和值来创建字典。

好的代码:
keys = ['1001', '1002', '1003']
values = ['骆昊', '王大锤', '白元芳']
d = dict(zip(keys, values))
print(d)

不好的代码:
keys = ['1001', '1002', '1003']
values = ['骆昊', '王大锤', '白元芳']
d = {}
for i, key in enumerate(keys):
    d[key] = values[i]
print(d)

说明:这篇文章的内容来自于网络,有兴趣的读者可以阅读原文

Python编程惯例

原文:https://www.cnblogs.com/bingogo/p/12134064.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!