Random String Generator

  • Share this:

Code introduction


Generates a random string of a specified length and character set.


Technology Stack : random, string

Code Type : String generation

Code Difficulty : Intermediate


                
                    
import os
import sys
import random
import json
import re
import time
import socket
import hashlib
import math
import statistics

def generate_random_string(length, characters='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'):
    return ''.join(random.choice(characters) for i in range(length))                
              
Tags: