elliot
Ape   Seattle, Washington, United States
 
 
:apex_wraith::csgogun::steamhappy:
Item Showcase
Favorite Game
Comments
+ RATIO 22 Mar, 2024 @ 4:00pm 
based battlebit enjoyer
elliot 12 Apr, 2023 @ 3:40pm 
import random

def generate_compliment():
adjectives = [
"amazing", "brilliant", "creative", "determined", "enthusiastic",
"fantastic", "generous", "hardworking", "insightful", "jovial",
"kind", "lovely", "marvelous", "nice", "outstanding", "positive",
"quick-witted", "resourceful", "spectacular", "talented",
"unique", "versatile", "wonderful", "exemplary", "zesty"
]
nouns = [
"friend", "gamer", "artist", "writer", "coder",
"designer", "musician", "strategist", "storyteller", "athlete",
"explorer", "innovator", "thinker", "leader", "problem-solver",
"inventor", "achiever", "optimist", "visionary", "entertainer"
]
adjective = random.choice(adjectives)
noun = random.choice(nouns)
return f"You are an {adjective} {noun}!"

if __name__ == "__main__":
compliment = generate_compliment()
print(compliment)