0
respostas

Minha resposta

a = {"planejar reunião", "revisar documento", "testar sistema"}  

b = {"testar sistema", "implementar funcionalidade", "corrigir bug"}  

tarefas_combinadas = a.union(b) 

tarefa_remover = input("Informe a tarefa a ser removida: ").lower()

if tarefa_remover in tarefas_combinadas:
    tarefas_combinadas.remove(tarefa_remover)

print(f"Tarefas finais: {' ,'.join(tarefas_combinadas)}")