meu_dicionario = {'maçã': 1, 'banana': 2, 'cereja': 3} valor_removido = meu_dicionario.pop('banana') print(meu_dicionario) print(valor_removido)