Skill

Python 2 Text Game Skills – 1

Haunted House – 1 The following will guide you through the development of a simple game. Other activities will add room, objects, inventories and enemies DecompositionBuilding a large project can be challenging. Breaking a complex problem into parts to allow it to be more easily understood and solve is called decomposition. It is the first

Python 2 Text Game Skills – 1 Read More »

Python 3 Console Skills – 2 Dictionaries

Python 3 Console Skills – 2 Dictionaries Dictionaries are a type of data structure in Python that store key: value pairs. When you look up word in an English dictionary, you would see that word’s definition. In a Python dictionary, looking up the key returns the associated value.For example: Animal Sound dog a barker cat

Python 3 Console Skills – 2 Dictionaries Read More »