
# lets create password generator function
# create two three lists
# use random.choice to pick from the list
# combine with an fstring for a password of you choice
# add a number to the end of it
“””
def password():
three lists here
pick a random number
f”” to combine them
print your new password
“””