这是我的程序,这意味着什么错误?

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'

最佳答案

您试图在strip()值上调用nota,该值是整数。不要那样做

关于python - “int”对象没有属性“strip”错误消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17191741/

10-16 03:54