How to convert a list of strings into a list of sublists of separate characters of the strings in Python

2 Answers

0 votes
lst = ['python', 'c++', 'php'] 
  
lst = [list(s) for s in lst]
  
print(lst) 



'''
run:
 
[['p', 'y', 't', 'h', 'o', 'n'], ['c', '+', '+'], ['p', 'h', 'p']]

'''

 



answered Feb 14, 2020 by avibootz
0 votes
lst = ['python', 'c++', 'php'] 
  
lst_lst = []
for i in range (len(lst)):
    lst_lst.append(list(lst[i]))
  
print(lst_lst) 



'''
run:
 
[['p', 'y', 't', 'h', 'o', 'n'], ['c', '+', '+'], ['p', 'h', 'p']]

'''

 



answered Feb 14, 2020 by avibootz
...