Lesson 1, Topic 7
In Progress

Your First Python Program (Explanation)

Lesson Progress
0% Complete

Code of the Lesson

import string
import random

characters = string.ascii_letters + string.digits + string.punctuation

password = ''

for i in range(12):
    password += random.choice(characters)

print('Here is a strong password:', password)