{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "ea25d7f2-4a31-4b9e-8dff-b58b5ade0992",
   "metadata": {},
   "outputs": [],
   "source": [
    "\n",
    "import random\n",
    "\n",
    "L_adj = [\"Sad\", \"Happy\", \"Beautiful\", \"Ugly\", \"Crazy\", \"Beauteous\", \"Silent\", \"Magnificent\", \n",
    "         \"Haunted\", \"Flimsy\", \"Terrified\", \"Tremendous\", \"Eloquent\", \"Vanishing\", \"Murderous\", \n",
    "         \"Perfect\", \"Perfectionist\", \"Starry\", \"Gigantic\", \"Giant\", \"Little\", \"Tiny\", \"Angry\", \n",
    "         \"Marginal\", \"Ambitious\", \"Disagreeable\", \"Agreeable\", \"Sanctified\", \"Secular\", \"Fanatic\", \n",
    "         \"Luscious\", \"Torturous\", \"Desperate\", \"Joyful\", \"Hardworking\", \"Red\", \"Blue\", \"Ghastly\",\n",
    "        \"Eternal\", \"Neverending\", \"Mortal\", \"Fancy\", \"Pale\", \"Ailing\", \"Healthy\", \"Patient\", \"Impatient\",\n",
    "         \"Sleepy\", \"Nervous\", \"Mysterious\", \"Flamable\", \"Broken\", \"Surreptitious\", \"Busy\", \"Overwhelming\", \n",
    "        \"Underwhelming\", \"Tired\", \"Disastrous\", \"Loose\", \"Heavy\", \"Light\", \"Orange\", \"Terrible\", \"Talkative\",\n",
    "        \"Vain\", \"Dismissive\", \"Enthusiastic\", \"Kind\", \"Calm\", \"Loud\", \"Helpful\", \"Domineering\", \"Lovely\", \"Quiet\",\n",
    "         \"Punctual\", \"Imaginative\", \"Magic\", \"Courageous\", \"Inquisitive\", \"Wise\", \"Swiss\", \"Lebanese\", \"Melodious\",\n",
    "        \"Stressed\", \"Hairy\", \"Cruel\", \"Depressed\", \"Melancholic\"]\n",
    "\n",
    "L_noun = [\"House\", \"Table\", \"Glass\", \"Cat\", \"Dog\", \"Tiger\", \"Mouse\", \"Story\", \"Duck\", \"Duckling\",\n",
    "          \"Prince\", \"Princess\", \"King\", \"Queen\", \"Castle\", \"Book\", \"Man\", \"Woman\", \"Boy\", \"Girl\",\n",
    "          \"Alien\", \"Locust\", \"Grasshopper\", \"Ant\", \"Aunt\", \"Uncle\", \"Pea\", \"Apple\", \"Orchard\", \"Orchid\",\n",
    "          \"Tree\", \"Squirrel\", \"Owl\", \"Hacker\", \"Snake\", \"Rat\", \"Chicken\", \"Goose\", \"Coin\", \"Feather\",\n",
    "          \"Bird\", \"Piglet\", \"Kitten\", \"Badger\", \"Mushroom\", \"Pineapple\", \"Chickpea\", \"Bean\", \"Thief\", \"Ghost\",\n",
    "         \"Mosquito\", \"Bee\", \"Egg\", \"Story\", \"Construction\", \"Moustache\"]\n",
    "\n",
    "L_author = [\"A\", \"B\", \"C\", \"D\", \"F\", \"X\", \"Y\"]\n",
    "\n",
    "L_pages = list(range(100, 800, 50))\n",
    "\n",
    "\n",
    "\n",
    "def generate_book():\n",
    "    title = \"The \" + random.choice(L_adj) + \" \" + random.choice(L_noun)\n",
    "    author = random.choice(L_author) + \". \" + random.choice(L_author) + \".\"\n",
    "    pages = random.choice(L_pages)\n",
    "    \n",
    "    return title, author, pages"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.12.11"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
