#! /usr/bin/env python
"""
common_vars.py
Illustrate the following concepts:
- Code reuse

imported into other examples
"""


shapes = ["square""triangle""circle"]
books = [
            {
                "title""War and Peace",
                "shelf"3,
                "available"True
            },
            {
                "title""Hamlet",
                "shelf"1,
                "available"False
            },
            {
                "title""Harold and the Purple Crayon",
                "shelf"2,
                "available"True
            }
        ]
colors = ["blue""green""red"]

Index