Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In python how do I fix the first line so this code runs? if __name__ == '__main__': # Run the loop four times, and generate
In python how do I fix the first line so this code runs?
if __name__ == '__main__':
# Run the loop four times, and generate and check the password from withing the loop.
for i in range(4):
# Generate the password.
password = password_gen(length=14,repeat=False,num_special_characters=2,min_num=0,min_upper=1)
# Check if the password is valid
if(check_password(password,length=14,num_special_characters=2,min_num=0,min_upper=1)):
print(password)
else:
print()
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started