Random Compliment Generator

import random

def get_random_compliment():
    compliments = [
        "You're amazing!",
        "Your smile lights up the room.",
        "You have a great sense of humor!",
        "You're a true friend.",
        "You brighten my day!",
        "You're a wonderful person.",
        "You have a fantastic sense of style!",
        "You're incredibly talented."
    ]
    
    return random.choice(compliments)

if __name__ == "__main__":
    print("Here's a compliment for you:")
    print(get_random_compliment())