In python remove a name from the set and add another in its place using variables. male_names = { 'Oliver', 'Declan', 'Henry' }
name_to_remove = input()
name_to_add = input()

''' Your solution goes here '''

print(male_names)

Solved
Show answers

Ask an AI advisor a question