I'm having a hard time doing an exercise in the book 'Intensive python course by Eric Matthes' the exercises is as follows:
8.10 - Great Magicians: Eat with a copy of your exercise program 8.9. Write a function called make_great () that modifies the list of magicians by adding the 'Great' expression to the name of each magician. Call show_magicians () to see if the list has actually changed.
I did exercise 8.9 and it was as follows:
def show_magiciasns():
lista=['Howard Thurston', 'David Copperfield', "Lance Burton", 'Houdini',
'David Blaine', 'Dynamo', 'Derren Brown', 'Criss Angel']
for magicos in lista:
print (magicos)
show_magiciasns()
My question is to create a function that changes this list.