This is the initial code:
word_list = ['cat','dog','rabbit']
letter_list = [ ]
for a_word in word_list:
for a_letter in a_word:
letter_list.append(a_letter)
print(letter_list)
I need to modify it to produce a list of unique letters.
Could somebody please advise how to do this without using set()
The result should be like this
> ['c', 'a', 't', 'd', 'o', 'g', 'r', 'b', 'i']