Untitled

 avatar
unknown
plain_text
14 days ago
788 B
2
Indexable
import random

def get_motivational_quote():
    quotes = [
                "Believe you can and you're halfway there. – Theodore Roosevelt",
                        "Do what you can, with what you have, where you are. – Theodore Roosevelt",
                                "The only way to do great work is to love what you do. – Steve Jobs",
                                        "It does not matter how slowly you go as long as you do not stop. – Confucius",
                                                "Hardships often prepare ordinary people for an extraordinary destiny. – C.S. Lewis",
    ]
        return random.choice(quotes)

        if __name__ == "__main__":
            print("✨ Motivational Quote ✨")
                print(get_motivational_quote())
    ]
Editor is loading...
Leave a Comment