Random String Generator with Current Time

  • Share this:

Code introduction


This function generates a random string of a specified length and returns the current time, with a customizable format.


Technology Stack : datetime, random, string

Code Type : Function

Code Difficulty : Intermediate


                
                    
import datetime
import random
import string

def generate_random_string(length=10):
    return ''.join(random.choices(string.ascii_letters + string.digits, k=length))

def get_current_time_with_format(format_string="%Y-%m-%d %H:%M:%S"):
    return datetime.datetime.now().strftime(format_string)

def xxx(arg1, arg2):
    random_str = generate_random_string(arg1)
    current_time = get_current_time_with_format(arg2)
    return random_str, current_time