python 生成隨機密碼工具

#!/usr/bin/python #coding:utf8python from random import choice import stringdom def GenPassword(length=18,chars=string.printable[:94]):     return ''.join([choice(chars) for i in range(length)])string
相關文章
相關標籤/搜索