PW Akshay

Generation

generate functionMon, 28 Nov 2022

password generator using random module (no function)

import random list_of_passwords = ['apple', 'banana', 'peach', 'grape', 'orange'] password = random.choice(list_of_passwords) print(password)

Want to kickstart your project?Use the new AI Studio to create your code