elliot
Ape
Seattle, Washington, United States
:apex_wraith::csgogun::steamhappy:
:apex_wraith::csgogun::steamhappy:
Expositor de artículos
Juego favorito
5,300
Horas jugadas
Comentarios
+ RATIO 22 MAR 2024 a las 4:00 p. m. 
based battlebit enjoyer
elliot 12 ABR 2023 a las 3:40 p. m. 
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)