I have the following python code:
def make_great(l): l = [\'The great \' + magician for magician in l] magicians = [\'Tom\'] make_great(magicians) print(mag
Your function is not returning anything. You can either have your print statement in the function or return the modified list and then print it