string randomizing
super fun random string thing prefix has stuff put before the random string
import random, string
from datetime import datetime
random.seed(datetime.now().timestamp())
prefix = ""
randomstring = prefix + "".join(random.choices(string.ascii_letters + string.digits, k=16))
print(randomstring)
ok thaats it