0
How can I convert a string into a list?
3 Answers
+ 7
a="hello"
print(list(a)).
you can use split method as well in case you want to split the string based on some character.
+ 2
Runtime Terror you missed the immutability part ;)
0
â¤â˘â đđ˘đ˘đđ¨ đđĄđđ˛đđĽ ââ˘â¤ it did.
Thanks alot!