Discussões Q&A
Help?
 -2 Votos
 8 Respostasis 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 Voto
 4 RespostasРазработать программу
 0 Voto
 1 Respostadeclaring
 0 Voto
 1 Respostax = 42;
int num = 0;
while (num <3)
Consele.writeline  (x);
num++;
int x = 42; is just an int with an asigned value of 42
int num=0; is what initiate the count for the while loop
while (num < 3); means 0<3 true, 1< 3 true, 2<3 true, the loop end at 2 bc 3 <3 is false
consele.writeline (x) will display 42 while num < 3 
num++ will execute and then add 1 to check if the while loop still true, but it stop at 2, bc 3 makes it false. 
so the consele.write will write 42 three times. x=42, remember the (x)
 0 Voto
 2 RespostasPopular hoje
How create a new language ?
 1 Votes
Beginner question
 0 Votes
I need help to solve this
 0 Votes
Remove
 0 Votes
Project
 0 Votes