0
How to split strings ?
What should I do for changing this codeâ ăăăstr_Hello = input('Say Hello:') to thisâ ăăăL_Hello = [ 'H' , 'e' , 'l' , 'l' , 'o' ]
2 Antworten
+ 5
str_Hello = input(âSay Hello: â)
L_Hello = list(str_Hello)
print(L_Hello)
+ 2
You can use:
str.split(separator)
-str: string you're using
strHello = "Hello world"
str = strHello.split()