how to convert a string into a list code example
Example 1: convert string to list python
word = 'abc'
L = list(word)
L
word = 'a,b,c'
L = word.split(',')
L
Example 2: python convert string to list
fruit = 'apple oranges banans'
newlist = fruit.split()
print(newlist)
Example 3: string to list python
s = 'hello'
l = list(s)
print(l)
Example 4: python3 create list from string
input = ['word1, 23, 12','word2, 10, 19','word3, 11, 15']
output = []
for item in input:
items = item.split(',')
output.append([items[0], int(items[1]), int(items[2])])