Posts by Andre Oliveira • 1 point
1 post
-
0
votes5
answers135
viewsA: Problems with arrays in a Python password generator
Use a text variable for the password and increment every step of your loop. from random import choice minusculas = ['a','b','c','d','f','g','h'] maiusculas = ['A','B','C','D','F','G','H'] pos=0…