Boa tarde
Estou tentando rodar os códigos via google colab usando o arquivo Hora da Pratica
mas está dando o seguinte erro:
Codigo:
nota_1 = float(input('Digite a 1° nota: '))
nota_2 = float(input('Digite a 2° nota: '))
nota_3 = float(input('Digite a 3° nota: '))
print(f'Média {(nota_1+nota_2+nota_3)/3}.')
Erro :
Digite a 1° nota: 1 Digite a 2° nota: 1 Digite a 3° nota: 1 ```
TypeError Traceback (most recent call last) in <cell line: 4>() 2 nota_2 = float(input('Digite a 2° nota: ')) 3 nota_3 = float(input('Digite a 3° nota: ')) ----> 4 print(f'Média {(nota_1+nota_2+nota_3)/3}.')
TypeError: 'str' object is not callable ```