If I have a Person modle as below:
class Person
first_name = models.CharField
last_name = models.CharField
I want to create a composite attribute full name, which would be a combination of first and last name.
full_name = self.first_name + ' ' + self.last_name
Also, whenever a the first name in the person model is modified the full_name should be automatically update.