Navigam's picture
eas inferenece and added hard, mdeium task
769cea2
Raw
History Blame Contribute Delete
319 Bytes
def format_user_data(user_dict):
"""
Takes a dictionary with 'first_name', 'last_name', and 'age'.
Should return a string formatted exactly like: "LAST_NAME, First_name (Age: X)"
If 'age' is missing, it should default to "Unknown".
"""
pass # TODO: Implement this function based on the docstring