Question: Write a function named passwordGenerator that takes in a parameter that represents the length of the password to generate. The function will return a

Write a function named passwordGenerator that takes in a parameter that represents the length of the password

Write a function named passwordGenerator that takes in a parameter that represents the length of the password to generate. The function will return a string. To keep this simple, you can limit the characters to randomly pick from to 5 lowercase, 5 upper case characters, 4 symbols and 9 numbers (can be treated as strings). >>> passwordGenerator (5) '1J31J' >>> passwordGenerator (15) >>> passwordGenerator (0) 'e2d167897d2F43a'

Step by Step Solution

3.34 Rating (151 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Certainly Heres a simple implem... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!