def double_reverse(words_list):
    reverse = []
    reverse1= []
    reverse = words_list[::-1] 
    
    for i in reverse:
        reverse1.append(i[::-1])
    words_list = reverse1
Hi there,
I have this question for a practice assessment:
For this question, I cannot return or print anything. Instead, I need to update the words_list list value so that I can get the desired result.
However, for some reason I can only get the original list. Why is the list not being updated?
Cheers
 
    