python create list from comma-separated string code example

Example 1: string to list in python comma

# input comma separated elements as string 
str = str (raw_input ("Enter comma separated integers: "))
print "Input string: ", str

# conver to the list
list = str.split (",")
print "list: ", list

Example 2: convert list to string separated by comma python

converted_list = [str(element) for element in a_list]

Example 3: list from comma separated string python

>>> my_string = 'A,B,C,D,E'
>>> my_list = my_string.split(",")
>>> print my_list
['A', 'B', 'C', 'D', 'E']

Tags:

R Example