#!/bin/python3 import sys def minimumNumber(no, password): # Return the minimum number of characters to make the password strong numbers = "0123456789" lower_case = "abcdefghijklmnopqrstuvwxyz" upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" special_characters = "!@#$%^&*()-+" n = False lc = False uc = False sc = False r_l = 0 max_letters = 6 l = [x for x in password] if( no >= max_letters or no