How to convert a string with comma-delimited items to a list in Python? October 21, 2022 by Tarik Like this: >>> text="a,b,c" >>> text = text.split(',') >>> text [ 'a', 'b', 'c' ]