+ 1
How to convert a string into list in Python??
String to list convertion ??
3 Respuestas
+ 1
Just pass the string to `list()` and it will return a list from the string you give it
+ 1
list([string_var])
0
Yes Jan Markus I wanna to put every character as a separate element into the list .