In java we have the not operator, we can use it like this:
if (!metodo()) {
//código
}
I'm just getting to know python now, and I have a little problem:
I have a function that adds names to a list:
def adiciona_perfis():
quantidade = 0
nome = raw_input("Digite seu nome ")
nomes.append(nome)
quantidade += 1
And another that checks the variable quantity:
def tem_vaga(quantidade):
if quantidade == 3:
return False
return True
I wanted to call the tem_vaga () function inside the add_perfis function. But using the not, in Java for example, could do so:
if (!tem_vaga(quantidade)) {
//Código
}
How can I do this in Python?