142k views
5 votes
Write a simple code that does the

following.
Write the C\# or Python code to read in a comma separated string of names from the user console (e.g., "Garrett, Marissa, Ben"), separate into individual names, and then add the length of each

User Nologin
by
7.5k points

1 Answer

4 votes

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.

User Dansp
by
7.1k points