Blog Content

import random

def generate_trivia():
    trivia_categories = {
        "Farming": [
            ("What is the process of planting crops and raising livestock?", "Agriculture"),
            ("Which animal is known for producing wool?", "Sheep"),
            ("What is the tool used for cutting hay?", "Scythe"),
            ("What is the term for a large area of land used for growing crops?", "Field"),
            ("What is the name of the machine that harvests grain?", "Combine Harvester"),
        ],
        "Science": [
            ("What is the chemical symbol for water?", "H2O"),
            ("What is the process by which plants make their own food?", "Photosynthesis"),
            ("What is the largest planet in our solar system?", "Jupiter"),
            ("What is the force that pulls objects towards the Earth?", "Gravity"),
            ("What is the study of living organisms?", "Biology"),
        ],
        "Math": [
            ("What is the result of 7 multiplied by 8?", "56"),
            ("What is the square root of 144?", "12"),
            ("What is the formula for the area of a circle?", "πr²"),
            ("What is the sum of the angles in a triangle?", "180 degrees"),
            ("What is the next prime number after 17?", "19"),
        ],
        "Local History": [
            ("What was the original name of this city/town? (Replace 'this city/town')", "Insert Local History Answer"),
            ("Which historical event occurred in this area in [Year]? (Replace [Year])", "Insert Local History Answer"),
            ("Who was a prominent figure from this area?", "Insert Local History Answer"),
            ("What landmark is significant to this region?", "Insert Local History Answer"),
            ("What industry was vital to this area's development?", "Insert Local History Answer"),
        ],
        "Things That Make You Laugh": [
            ("Why don't scientists trust atoms?", "Because they make up everything!"),
            ("What do you call a fake noodle?", "An impasta!"),
            ("Why did the scarecrow win an award?", "Because he was outstanding in his field!"),
            ("What do you call a fish with no eyes?", "Fsh!"),
            ("Why did the bicycle fall over?", "Because it was two tired!"),
        ],
    }

    category = random.choice(list(trivia_categories.keys()))
    question, answer = random.choice(trivia_categories[category])

    return {
        "category": category,
        "question": question,
        "answer": answer,
    }

if __name__ == "__main__":
    trivia = generate_trivia()
    print(f"Category: {trivia['category']}")
    print(f"Question: {trivia['question']}")
    print(f"Answer: {trivia['answer']}")






Popular Categories

Recent Posts

  • All Posts
  • Business
  • Creative
  • Digital
  • Uncategorized

Popular Tags