[Solved] generate password and specify how many degints and words [closed]

Introduction

Generating a secure password is an important part of keeping your online accounts safe. This tutorial will show you how to generate a secure password that is composed of both digits and words. You will be able to specify how many digits and words you would like to include in your password. By the end of this tutorial, you will have a secure password that is easy to remember.

Solution

The following code will generate a random password with a specified number of digits and words:

import random

def generate_password(num_digits, num_words):
# Generate a random string of digits
digits = ”.join(random.choice(string.digits) for _ in range(num_digits))

# Generate a random string of words
words = ”.join(random.choice(string.ascii_letters) for _ in range(num_words))

# Combine the two strings
password = digits + words

# Shuffle the characters
password = ”.join(random.sample(password, len(password)))

return password

# Generate a password with 8 digits and 4 words
password = generate_password(8, 4)
print(password)


Guessing you might benefit from an answer that walked you through what was going on, rather than just giving you wanted, might be useful for you in the future.

function randomString($length) { // Generates a random string of $length characters long
    $letters = "abcdefghijklmnopqrstuwxyzABCDEFGHIJKLMNOPQRSTUWXYZ"; // Characters you don't mind having more than one of
    $random_string = '';
    for ($i = 0; $i < $length; $i++) { // Until $i = $length, do the following & increment $i by 1 each time
        $random_string .= $letters[rand(0, (strlen($letters) - 1))]; // Add another random character to the string
    }
    $random_string[rand(0, ($length - 1))] = rand(0,9); // Replace one of the characters with a random number between 0 and 9

    return $random_string;
}

echo randomString(15);

3

solved generate password and specify how many degints and words [closed]


Generating a secure password can be a tricky task. It’s important to create a password that is both secure and easy to remember. To generate a secure password, you’ll need to specify how many digits and words you want to include.

For example, if you want to generate a password with 8 digits and 4 words, you could use a combination of numbers, letters, and symbols. You could also use a random password generator to create a unique password.

When creating a password, it’s important to use a combination of upper and lowercase letters, numbers, and symbols. You should also avoid using common words or phrases, as these can be easily guessed. Additionally, you should avoid using the same password for multiple accounts.

Creating a secure password is an important step in protecting your online accounts. By specifying how many digits and words you want to include, you can create a strong and unique password that is difficult to guess.