标签: python-3.x list random count insert
好的我试着创建一个生成10个字符随机密码的程序,但创建的密码只有一个字符而不是10个
count = 0 while count < 10: new = [] new.insert(count,(random.choice([random.choice(string.ascii_letters),random.choice(string.digits)]))) count = count+1 print(''.join(new))