password = input() score, num, up_char, low_char, other = 0, 0, 0, 0, 0 if len(password) <= 4: score += 5 elif len(password) <= 7: score += 10 else: score += 25 for char in password: if char.isdigit(): num += 1 elif char.isalpha(): if char.isupper(): up_char += 1 else: low_char += 1 else: othe...