我正在尝试在Django中将代码编写为“ Pythonic”。 请考虑以下模型:
class MyRequest(models.Model):
...
def get_prices(self):
...
def set_costs(self):
...
def get_details(self):
self.set_costs()
x = self.get_prices()
return x % 10
在彼此内部调用模型方法是一种好习惯吗?