Answers for "Projects to do with python"

3

python projects with source code for beginners

#Password generator 

import random
import string

letters = string.ascii_letters
print('Your brand new password is:')
print (''.join(random.choice(letters) for i in range(12)))
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language