Final answer:
To read in a comma separated string of names from the user console, separate into individual names, and then add the length of each, you can use the split() method in Python.
Step-by-step explanation:
In Python, you can use the split() method to separate a comma separated string into individual names. Here's an example code:
names = input('Enter a comma separated string of names: ')
separated_names = names.split(', ')
for name in separated_names:
print(len(name))
This code prompts the user to enter a comma separated string of names, splits the string using the comma as the delimiter, and then prints the length of each individual name.