import random import json quotes = [ "Life is what happens when you're busy making other plans. - John Lennon", "The only way to do great work is to love what you do. - Steve Jobs", "In three words I can sum up everything I've learned about life: it goes on. - Robert Frost", "The best time to plant a tree was 20 years ago. The second best time is now. - Chinese Proverb" ] with open("quotes.json", "w") as json_file: json.dump(quotes, json_file)