Since the list names = ['Curie', 'Darwin', 'Turing'] is redefined in Episode 5, and there's no need to retain the previous names, I suggest replacing Turing with Lovelace (representing Ada Lovelace)
e.g.
name = 'Rosalind'
for name in ['Curie', 'Darwin', 'Lovelace']:
print(name)
print('after the loop, name is', name)