three_words = ["Ant", "Run", "Worm"]
print(three_words)
three_words[0].upper()
three_words[2].swapcase()
print(three_words)
With the code like this it prints the following
#['Ant', 'Run', 'Worm']
['Ant', 'Run', 'Worm']
I understand that the upper and swapcase function arent being read but I dont know why