+ 4
How To Seprate The letters of string in phython
Give program for Example
3 Antworten
+ 5
print(list("hello")) #['h', 'e', 'l', 'l', 'o']
+ 5
thanku
+ 2
>>> s = "hello"
>>> a = list(s)
>>> print(a)
['h', 'e', 'l', 'l', 'o']
Give program for Example