I couldnt find any solution for my problem here so ill just post it maybe someone can help me ^^
This is how the program looks like right now:
def dorkgen():
title()
kw = ['mcdonalds', 'kfc', 'doordash', 'taco bell']
param = ['oid', 'ap', 'utm_source', 'PageName', 'div', 'ID']
pageform = ['php', 'asp', 'aspx', 'htm', 'html']
keyword = random.choice(kw)
parameter = random.choice(param)
pageformat = random.choice(pageform)
print("\n " + keyword + " " + "." + pageformat + "?" + parameter + "=")
anykey = input("\n Enter any key to return to the main menu...")
mainMenu()
And I want to generate all the possible generations of kw, param, and pageform lists with custom characters inbetween if anybody can help I would really appreciate.