Python - Encapsulation and Data Protection
Given this class, how can you add a property full_name that combines first_name and last_name?
class User:
def __init__(self, first_name, last_name):
self.first_name = first_name
self.last_name = last_name
# Add full_name property here