文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
少用 else 让程式逻辑更清楚
Why
讓主邏輯簡潔易懂。
What
程式邏輯常出現分支,這時會習慣性地用 if ... elif ... else ... 的寫法。雖然這樣寫起來很直觀,卻不易讀,容易分心在雜亂的分枝裡,而無法專心理解全局。
How
使用 Return Guard
def foo(x):
if x < 0:
return False
...
return True
使用函式和 list comprehension
abs_numbers = [math.fabs(x) for x in numbers]
def x_to_y(x):
if SOME_CONDITION:
return SOME_VALUE
...
return SOME_VALUE
ys = [x_to_y(x) for x in xs]
使用 Dictionary
import operator
def calculation(a, op, b):
digits = ['zero', 'one', 'two', 'three', 'four',
'five', 'six', 'seven', 'eight', 'nine']
s2n = dict(zip(digits, range(10)))
n2s = dict(zip(range(10), digits))
op_names = ['add', 'subtract', 'divide', 'multiply']
op_funcs = [operator.add, operator.sub, operator.div, operator.mul]
s2op = dict(zip(op_names, op_funcs))
result = s2op[op](s2n[a], s2n[b])
return n2s[result]
print calculation('one', 'add', 'two') # three
使用多型
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论