Problem solving:Python program to separate characters in a given string

word = “Umbrella”
l=[]

for i in word:
l.append(i)

print(l)

1 Like

@brindhubala30

Correct, keep it up.
Keep Practicing.

1 Like

@dsedyoda thank you mam…

1 Like