Getting error when I run my program. What do I need to change?
Getting error when I run my program. What do I need to change? Question: import random, string characters = string.ascii_letters + string.digits + string.punctuation def generate_random_password(): length = int(input("How many characters in password? ")) number_of_passwords = int(input("How many passwords would you like? ")) character_count = characters if character_count > str(length): print("To long, try again") return …