elliot
Ape
Seattle, Washington, United States
:apex_wraith::csgogun::steamhappy:
:apex_wraith::csgogun::steamhappy:
Προθήκη αντικειμένων
Αγαπημένο παιχνίδι
5.300
Ώρες παιχνιδιού
Σχόλια
+ RATIO 22 Μαρ 2024, 16:00 
based battlebit enjoyer
elliot 12 Απρ 2023, 15:40 
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)