我创建了一个密码生成器程序,得到了由输入决定数量的随机字母、数字和符号。不过,我似乎不知道如何打乱密码。
可以生成一个随机密码,例如adu145'!@但是我想把所有的字符也加起来
在打印密码之前添加行
password=''.join(random.sample(password,len(password)))
这是随机文件的链接。示例
我认为这正是您想要的
import random
help(random.shuffle)
Help on method shuffle in module random:
shuffle(x, random=None) method of random.Random instance
Shuffle list x in place, and return None.
Optional argument random is a 0-argument function returning a
random float in [0.0, 1.0); if it is the default None, the
standard random.random will be used.