You are on page 1of 1

Acceptable_Password_II

a = len(password) > 6

list1 = []

for x in range(len(password)):
b = password[x].isdigit()
list1.append(b)

c = any(list1)

print (a and c)

You might also like