如何使得Python代码更Pythonic

其他教程   发布日期:2025年02月08日   浏览次数:218

本文小编为大家详细介绍“如何使得Python代码更Pythonic”,内容详细,步骤清晰,细节处理妥当,希望这篇“如何使得Python代码更Pythonic”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

1.合并嵌套的if语句

我们从简单的开始。不要像这样嵌套 if 语句,只需将它们合并为一个即可。

  1. if a:
  2. if b:
  3. pass
  4. # -> refactor
  5. if a and b:
  6. pas

2.使用 any 而不是循环

这里我们要检查列表中是否至少有一个正元素。更长的解决方案是遍历所有数字,检查当前数字,然后在条件为真时中断。但是对于这个任务,在 Python 中有一个专门的方法,即 any 函数。如果可迭代对象的任何元素为真,则 any 返回 True。这比手动循环要短得多,也更像 pythonic。

  1. numbers = [-1, -2, -4, 0, 3, -7]
  2. has_positives = False
  3. for n in numbers:
  4. if n > 0:
  5. has_positives = True
  6. break
  7. # -> refactor
  8. has_positives = any(n > 0 for n in numbers)

3.从 for/while 循环中提取语句

很多时候你会看到循环中定义了一个变量,但它永远不会改变。这些都是不必要的操作,所以把它从循环中拉出来,然后你只需要创建一次。

  1. for building in buildings:
  2. city = 'London'
  3. addresses.append(building.street_address, city)
  4. # -> refactor
  5. city = 'London'
  6. for building in buildings:
  7. addresses.append(building.street_address, city)

4.去除只使用一次并立即返回的内联变量

很多时候你会看到代码在最后一个函数中定义了一个变量,一行之后它立即返回。如果清楚函数是干什么的,直接返回结果即可。这样更简洁并且避免了不必要的变量。但是,有时如果不是很清楚函数在做什么,可以给最后一个变量一个有意义的名称并将其用作自文档代码。

  1. def state_attributes(self):
  2. """Return the state attributes."""
  3. state_attr = {
  4. ATTR_CODE_FORMAT: self.code_format,
  5. ATTR_CHANGED_BY: self.changed_by,
  6. }
  7. return state_attr
  8. # -> refactor
  9. def state_attributes(self):
  10. """Return the state attributes."""
  11. return {
  12. ATTR_CODE_FORMAT: self.code_format,
  13. ATTR_CHANGED_BY: self.changed_by,
  14. }

5.用if表达式替换if语句

不用 if else 语句来设置变量的值,你可以像这样用 if 表达式在一行中设置它。不过,这种重构技术有点值得商榷。有些人仍然喜欢第一个选项,这很好。

  1. if condition:
  2. x = 1
  3. else:
  4. x = 2
  5. # -> refactor
  6. x = 1 if condition else 2

6.添加警示声明

查看此代码时,很难快速掌握正在发生的事情。有多个 if-else 语句和多个缩进。一旦你仔细观察,你可能会发现第一个 if 语句几乎覆盖了整个函数代码,只是在最后我们有相应的 else 子句,我们只返回 False。

我们可以把这个 else 子句移到最开始。这也称为警示声明。所以如果条件不成立,我们就不会执行其余的函数代码。这样就去掉了一个 else 子句,现在整个代码中的缩进少了一层。这看起来更清晰,也更容易理解。

  1. def should_i_wear_this_hat(self, hat):
  2. if isinstance(hat, Hat):
  3. current_fashion = get_fashion()
  4. weather_outside = self.look_out_of_window()
  5. is_stylish = self.evaluate_style(hat, current_fashion)
  6. if weather_outside.is_raining:
  7. print("Damn.")
  8. return True
  9. else:
  10. print("Great.")
  11. return is_stylish
  12. else:
  13. return False
  14. # -> refactor
  15. def should_i_wear_this_hat(self, hat):
  16. if not isinstance(hat, Hat):
  17. return False
  18. current_fashion = get_fashion()
  19. weather_outside = self.look_out_of_window()
  20. is_stylish = self.evaluate_style(hat, current_fashion)
  21. if weather_outside.is_raining:
  22. print("Damn.")
  23. return True
  24. else:
  25. print("Great.")
  26. return is_stylish

7.将分配移近用法位置

这是上一个示例的改进代码,但仍然需要一些时间才能理解这里发生的事情。所以我们想检查我们是否应该戴帽子。逻辑是这样的:如果正在下雨,我们总是说 True,如果没有下雨,如果帽子很时尚,我们就说 True。我们可以大大提高此逻辑的可读性的一种简单方法是将分配移至更接近其用法的位置。在使用 if 语句之前我们需要先了解天气情况。现在 fashion 和 style 变量只在 else 子句中需要,所以将它们向下移动。现在应该更清楚发生了什么。

前面第 4 条中,我们可以进一步缩短代码并立即返回评估样式结果。而在这个例子中,is_stylish 是个更好名字,因为它告诉你,知道如果帽子很时尚,你就说 True,否则就说 False。所以这里把多余的变量留着就好了。

  1. def should_i_wear_this_hat(self, hat):
  2. if not isinstance(hat, Hat):
  3. return False
  4. current_fashion = get_fashion()
  5. weather_outside = self.look_out_of_window()
  6. is_stylish = self.evaluate_style(hat, current_fashion)
  7. if weather_outside.is_raining:
  8. print("Damn.")
  9. return True
  10. else:
  11. print("Great.")
  12. return is_stylish
  13. # -> refactor
  14. def should_i_wear_this_hat(self, hat):
  15. if not isinstance(hat, Hat):
  16. return False
  17. weather_outside = self.look_out_of_window()
  18. if weather_outside.is_raining:
  19. print("Damn.")
  20. return True
  21. else:
  22. print("Great.")
  23. current_fashion = get_fashion()
  24. return self.evaluate_style(hat, current_fashion)
  25. # is_stylish = self.evaluate_style(hat, current_fashion)
  26. # return is_stylish

8.简化序列检查

这是我经常看到的另一件事。当你需要检查集合中是否有元素时,例如在列表中,你不需要写if len(your_list) > 0. 你可以简单地说if your_list。这是 pep 8 推荐的方法,也称为真值测试。这是可能的,因为在 Python 中,空序列和集合的计算结果为 False。所以这可以应用于字符串、元组、列表、字典和集合。

  1. if len(list_of_hats) > 0:
  2. hat_to_wear = choose_hat(list_of_hats)
  3. # -> refactor
  4. if list_of_hats:
  5. hat_to_wear = choose_hat(list_of_hats)

以上就是如何使得Python代码更Pythonic的详细内容,更多关于如何使得Python代码更Pythonic的资料请关注九品源码其它相关文章!