1

これは私のプログラムですが、このエラーはどういう意味ですか?

def menuAdiciona():
    nome = input("Digite o nome de quem fez o cafe: ")
    nota = int(input("Que nota recebeu: "))

    if len(nome.strip()) == 0:
        menuAdiciona()

    if len(nota.strip()) == 0:
        menuAdiciona()

    if nota < 0:
        nota = 0

AttributeError: 'int' object has no attribute 'strip'.

4

4 に答える 4