Tue 12 November 2019

Book Review: Code This Game! by Meg Ray (Odd Dot 2019)

Posted by Al Sweigart in misc   

5 Stars: An excellent project-based book for young readers who want to move beyond Scratch

Code This Game is an excellent book that teaches Python programming by guiding the reader through making a tower-defense game from scratch. This is a book that doesn't shy away from programming detail, but manages to remain fun and engaging. If you have a student or child who wants to move beyond MIT's Scratch programming tool and do "real" programming, this is a great book.

Read more...





Wed 05 June 2019

Pythonic Ways to Use Dictionaries

Posted by Al Sweigart in misc   

Python dictionaries are a useful part of the language. In addition to having the ability to store keys and values, you can also use dictionary methods to manipulate those values, and you can use dictionaries to write more concise code.

Read more...