I am trying to modify all of the elements of the list in Python:
magicians = ['harry potter', 'scamander', 'snape']
for magician in magicians:
magician = 'the Great ' + magician
print(magicians)
but it returns the original list:
['harry potter', 'scamander', 'snape']
Can you please kindly explain this to me step-by-step? This may be a very stupid question you have ever seen. I'm truly sorry for that.