Welcome back!
Put all the cards on the book brochure, lining them up with pictures of books.
Willow picks two cards.
Dad picks the other two.
Each player takes turns. Willow goes first.
In each turn:
a) Put down a card on a picture of a book.
b) Say "H" if [...]
On Windows, you can run a Python script on the PATH simply with its name. These should be equivalent:
c:>congeal blood
c:>congeal.py blood
c:>python congeal.py blood
If it's not working that way, fixing PATHEXT and correcting the file type associations with ASSOC and FTYPE will usually do the trick:
c:>set PATHEXT=%PATHEXT%:.PY
c:>ftype Python.File="C:Python25python25.exe" "%1" %*
c:>assoc .py=Python.File
If that still isn't [...]