December 20, 2021

Password Generator using python || codeAj

 Password Generator  using python


import random
lower='abcdefghijklmnopqrstuvwxyz'
upper = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
number = '0123456789'
symbol='[]{}#()*;._-'
all=lower+upper+number+symbol
length=8
i=1
while(i<=10):
password = "".join(random.sample(all,length))
print(password)
i+=1

find the cube of the range given digits. || codeAj

Find the cube of the range given Digits. Source Code r= int ( input ( "enter the range of digit : " )) def number_conter (n): ...