You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)