I'm trying to split a user input string into array of characters to count the number of occurrence of each character. Below is my code
input=input()
list=input.split()
print(list)
when i input string aaasssfffgggg
it gave the output ['aaasssfffgggg']
.But i need it as a array of characters