You have unsaved changes
Python
import random

def genword():

    user = ["Garnik", "Zhmen", "Gleb", "Timofej", "Kolbasik", "Vitya", "Nazar", "Slavik", "Ognev"]
    tag = [
        "gay", "nigger", "furry", "child predator", "faggot",
        "retard", "tranny", "gook", "spic", "wop", "chink",
        "raghead", "kike", "redneck", "hillbilly", "cracker", "jap", "nazi",
        "pussy", "twat", "wank", "fistfuck", "jizz", "pederast", "scum", "skank",
        "bimbo", "ho", "homo", "monger", "bitchass", "dickwad", "fucktard",
        "shitbag", "assclown", "buttfuck", "cuntface", "fuckface", "goddamn",
        "pissflap", "poof", "shitstain", "smegma", "wanker", "tranny", "Jew", "Muslim", "Christian", "disabled"
    ]
    noun = [
        "level 5", "gyatt", "rizz", "Livvy Dunne", "baby gronk", "ice spice", "skibidi toilet",
        "only in ohio", "creatine", "alpha sigma", "cuh dey board", "no cap", "kodiak boar",
        "bruh moment", "fam squad", "chad energy", "lit AF", "simp nation", "big yikes", "boomer flex",
        "big mood", "slay queen", "big brain time", "irl goals", "gamer moment", "hype beast", "based and redpilled",
        "gucci gang", "meme lord", "sussy baka", "main character vibes", "cancel culture", "pro gamer move", "gigachad",
    ]
    verbs = [
        "rizzing up", "yeeting", "sus vibing", "drip checking", "stanning", "ghosting", "vibing", "susing"
                                                                                                  "beta vibing",
        "clout chasing", "thirst trapping", "savage moding", "squad goaling", "finessing",
        "vibe checking", "lowkey flexing", "soft launching", "snack attacking", "fit checking",
        "dabbing on", "full sending", "mood boosting", "tea spilling", "flex taping", "clout goggling",
        "fomo squadding",
        "hype training", "noob tubing", "bussin", "cringe festing", "savage flexing", "epic winning",
        "flexing", "vibing", "spilling tea on", "glowing up", "ghosting", "simping over", "hyping up"
    ]

    user = random.choice(user)
    noun = random.choice(noun)
    tag = random.choice(tag)
    verb = random.choice(verbs)

    structure = [
        f"{user} is {tag}, {verb} the {noun}.",
        f"{user} is {tag}, who {verb} the {noun}",
        f"{user} is {tag} engaged in {verb} the {noun}.",
        f"{user} is {tag} working on {noun} is {verb}.",
        f"{user} {verb} the {noun}, according to {tag}.",
        f"{tag} is {user} and {verb} the {noun}.",
        f"{user} is known as {tag}, who {verb}s the {noun}.",
        f"{tag} sees {user} {verb} the {noun}.",
        f"While {tag} {verb}, {user} works on the {noun}.",
        f"{user} and {tag} {verb} the {noun} together.",
        f"{user} {verb} the {noun} in {tag}'s presence.",
        f"{user}, a {tag}, {verb} the {noun}.",
        f"{tag}, who {verb} the {noun}, is {user}.",
        f"{user}, who {verb} the {noun}, is called {tag}.",
        f"{user} {verb} the {noun} and is {tag}."
    ]

    sentence = random.choice(structure)

    return sentence

print(genword())
Vitya mood boosting the cuh dey board in buttfuck's presence.