0
How can I convert a string into a list?
6 Respuestas
+ 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!