Good afternoon, how do I use conditionals in IDE? Having to use to enter a value and call a function but it does not allow typing. The function is correct because when I retire the conditional works perfectly. The code snippet is the one below.
esc = int(input('digite: '))
if esc == ‘1’:
print(Rastrea_Black())
if esc == ‘2’:
print(Rastrea_White())
elif:
print(‘Opção inválida’)