Final answer:
In response to the programming query, a Python script called split_me.py needs to be written that takes an input formatted as Age.FirstName, separates the age and name, and prints out a formatted message detailing the age and name length.
Step-by-step explanation:
The student is looking to write a Python program named split_me.py that processes an input string formatted as Age.FirstName. The program should output a message stating the first name and age, as well as the length of the first name. To achieve this, the program will need to separate the input string into the age and the first name using the split method, then output the required message.
Here is an example of how the Python code in split_me.py might look:
# This is split_me.py
def main():
user_input = input('Please enter your age and first name separated by a dot: ')
age, first_name = user_input.split('.')
print(f'{first_name} is {age} years old.')
print(f'Length of {first_name} is {len(first_name)}.')
if __name__ == '__main__':
main()
Once executed, this program would satisfy the requirement of returning the formatted statement with the user's age and the length of their first name.