SyntaxFix
Write A Post
Hire A Developer
Questions
You can use this function to convert comma-delimited single character strings to list-
def stringtolist(x): mylist=[] for i in range(0,len(x),2): mylist.append(x[i]) return mylist