""" Create a function roll_dice(num_dice, num_sides) that simulates rolling dice. Use the random module to generate random numbers. Return a list of the rolled values. """ """ Create a function days_until_birthday(birth_month, birth_day) that calculates how many days until the next occurrence of that birthday from today. Use the datetime module. """ """ Create a function parse_user_data(json_string) that takes a JSON string representing a user (with keys: "name", "age", "email") and returns a dictionary with an additional key "adult" (True if age >= 18, False otherwise). Use json module. """