Untitled
unknown
plain_text
4 months ago
403 B
7
Indexable
import random
quotes = [
"Keep going — you're doing better than you think.",
"Small steps today lead to big wins tomorrow.",
"Mistakes are proof that you're learning.",
"Stay curious and keep building.",
"Progress, not perfection."
]
def main():
quote = random.choice(quotes)
print("🌟 Your motivational quote:")
print(quote)
if __name__ == "__main__":
main()
Editor is loading...
Leave a Comment