Q&A Discussies
Chars
2 Stemmen
1 Antwoordcount chars
2 Stemmen
1 AntwoordOperator ++ with strings or chars
0 Stemmen
1 AntwoordThe compiler
0 Stemmen
2 AntwoordenCan you tell what's wrong
2 Stemmen
3 AntwoordenVariable syntax - Jquery
5 Stemmen
5 AntwoordenString const-ness!!!!
1 Stem
1 AntwoordNumber of letters in strings
4 Stemmen
10 Antwoordenis there anything wrong in this please answer
import string
from random import *
letters = string.ascii_letters
digits = string.digits
chars = letters + digits
min_length = 9
max_length = 15
password = "".join(choice(chars) for x in range(randint(min_length, max_length)))
print(password)
1 Stem
4 Antwoorden