Random String Generator

  • Share this:

Code introduction


This function generates a random string of specified length, including uppercase and lowercase letters and numbers.


Technology Stack : Python built-in libraries

Code Type : Function

Code Difficulty : Intermediate


                
                    
import math
import random
import os
import sys
import datetime
import json
import re

def generate_random_string(length):
    """生成指定长度的随机字符串

    Args:
        length (int): 字符串的长度

    Returns:
        str: 生成的随机字符串
    """
    characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
    return ''.join(random.choice(characters) for _ in range(length))