Heelo
Â
import random def give_compliment(name): compliments = [ "You're awesome!", "You're doing great!", "You're a coding wizard!", "You're smarter than Python itself!", "You light up the terminal!" ] compliment = random.choice(compliments) return f"{name}, {compliment}" # Example usage print(give_compliment("Alex"))