#Python program to separate characters in a given string

String=str(input("Enter the value "))
list = []

for i in String:
list.append(i)

print(list)

@sathsaran01

Correct keep it up.
Keep Practicing.

1 Like