mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
changed if statement to a slightly cleaner/less confusing variant
This commit is contained in:
parent
0e3690d230
commit
eabb44417c
@ -673,11 +673,12 @@ For example, this model has a few custom methods::
|
||||
def baby_boomer_status(self):
|
||||
"Returns the person's baby-boomer status."
|
||||
import datetime
|
||||
if datetime.date(1945, 8, 1) <= self.birth_date <= datetime.date(1964, 12, 31):
|
||||
return "Baby boomer"
|
||||
if self.birth_date < datetime.date(1945, 8, 1):
|
||||
return "Pre-boomer"
|
||||
return "Post-boomer"
|
||||
elif self.birth_date < datetime.date(1965, 1, 1):
|
||||
return "Baby boomer"
|
||||
else:
|
||||
return "Post-boomer"
|
||||
|
||||
def is_midwestern(self):
|
||||
"Returns True if this person is from the Midwest."
|
||||
|
Loading…
Reference in New Issue
Block a user