This article shares an introduction to the method of generating a password with a specified number of digits using python
#!/usr/bin/env python #coding:utf8 #随机生成8位、20位、10位密码 import random import string all_chs = string.letters + string.digits def gen_pass(num=8): pwd = '' # num = int(raw_input('numer: ')) for i in range(num): mima = random.choice(all_chs) pwd += mima return pwd if name == 'main' : print gen_pass() print gen_pass(20) print gen_pass(10)
The above is the detailed content of Introduction to how to use python to generate a password with a specified number of digits. For more information, please follow other related articles on the PHP Chinese website!