Para practicar un poco me puse a inventar mi propio código y escribí lo siguiente:
loggin_attempts = [5,10,100]
def verificar_si_threat(loggin_attempts): for threat in loggin_attempts: if loggin_attempts >= 1: print("Normal activity") else: print("Pay attention")
verificar_si_threat(loggin_attempts)
pero en el resultado me arroja un error
TypeError: '>=' not supported between instances of 'list' and 'int'
De qué manera entonces buscaría un intento de amenaza si me quiero basar en el total de loggins para validar si es una amenaza de seguridad o no?