python:实现passwordGen密码产生器
import random
lChars = "abcdefghijklmnopqrstuvwxyz"
uChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
digits = "1234567890"
specialChars = "!@#$%^&*-_+="
passLen = 10 # actual generated password length will be this length + 1
myPass &