Skip to main content

How to generate a random string with Python.


Photo by Pixabay.


Hello everyone, welcome back to my blog. Today I will talk about how to generate a random string with Python. As a developer developing random strings is a vital task. I am working on a simple URL shortener app with Django. I will bring another article on that project as well.


Before getting started, don't forget to subscribe to my blog using the subscribe button in the top-right corner.


Importing modules.


To get our job done, we have to import two important modules. They are built-in and no need to use PIP to install.

  1. random module.
  2. string module.


here we use the random module to choose some random characters which are provided by the string module.

you can use the following piece of code to import them.

import random
import string

Writing the function

To generate the random string we can create a function that returns the random string whenever we call.




def create_string(size = 10, chars = string.ascii_lowercase+string.digits):
    return "".join(random.choice(chars) for _ in range(size))


here we can adjust the size of the string. I have set it to 10. Each time we call it it will return a random string of 10 characters. 


chars is the parameter that contains the list of characters we can use to create the random string.


Characters.


we can simply get the lists of characters with the help of the string module.
You can simply visit this support article: https://docs.python.org/3/library/string.html to learn more.

you can add the lists together using the + operator.
 

Function Breakdown.

Here we tell python to join characters together with an empty string. if we use
"-".join(...)  instead of the empty string it will return a random string like this:

s-s-3-b-d-w-9-9-9-z


Then we tell python to choose random characters from the chars using a for-loop.


We can use the following code to understand the above one-line code. 

def generate(size=10,chars=string.ascii_letters+string.digits):
    selected_chars = []

    for _ in range(size):
        char = random.choice(chars)
        selected_chars.append(char)

    return "".join(selected_chars)

print(generate())


this will return the same result.
If you have any questions, please let me know in the comment section.


Final Code.


import random,string
def create_string(size = 10, chars = string.ascii_lowercase+string.digits):
    return "-".join(random.choice(chars) for _ in range(size))
create_string()


It is a simple 4-line code.

Thank you for reading and don't forget to share this if you learned something new.

Comments

Trending Now

Find the Resultant vector of two Vectors With PYTHON!!

NEW ARTICLE:  How to Find the resultant of multiple vectors with Python! Using Python We can do many complex calculations. I learned how to calculate Resultant Vector using a formula with its size and direction in my Physics class. Then, I simply developed a CLI software to calculate the resultant of given two vectors Hope you like it :>) Follow me... Step :1 You need to install python on your computer. No matter what the operating system is you can find the ideal version of python from the official website of Python org And you will need a code editor like VS code and can download it with a simple Google search. (Hope you hate the first step Haha ) Step 2: we use the math module to calculate our resultant vector. The method I used as follows math.radians() : converts degrees to radians math.degrees() : converts radians to degrees math.sqrt()  : find the square root of a number math.atan() :find the tan inverse Step 3: the formula I used to calculate the size of the resultant is as

How to send and receive discord messages with your bot in 2023.

Hello everyone. Welcome back to the Blog of Chamodh today I will show you how to send and receive discord messages with your bot. Before getting started, I remind you that this is the second episode of the series How to make Discord bot in 2023 and if you haven't read the previous one, please read that first as I explain how to create your bot application and add it to a server there. READ:  https://blogofchamodh.blogspot.com/2023/02/how-to-make-your-own-discord-bot-2023.html We don't gonna use virtual environments, IDEs, or any other utility because we can use Replit for our coding purposes.  Let's Get Started. STEP1: Set up Replit It is really simple. Just go to  https://replit.com/~ and sign up if you have never used its service before and create a new Repl. I don't hope to guide you in this as this is an intermediate tutorial. Make sure to select Python as you create the new Repl because we are going to use Python for our back end. STEP 2: Get your token. To run ou