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 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
Certainly Heres a simple implem... View full answer
Get step-by-step solutions from verified subject matter experts
