- This event has passed.
7:00 PM – Intro To Python – Joshua
February 12 @ 7:00 pm - 8:00 pm
Today We Did
- random libraries
- random.rand int
- random.choice
Homework
# 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
“””