This game was created for 1D Project submission for 10.014 Computational Thinking for Design.
Write your own python-based computer game that, at the minimum, has a text-based user interface. In other words, We shall define a computer game in this project as a python program created for the entertainment of at least one user. This computer game can be based on an existing game, or it can be your own game.
There are the following restrictions to be followed by everyone without exception: Your game shall be written entirely in python. You may use only standard python libraries. i.e. user needs not do a
pip install
to play your game. Your game must have a text-based user interface, any other visual library used in this course e.gturtle
ormatplotlib
can be on top of this. One exception to rule 2 is that you can use the external libraries that are introduced in this course, e.g. thepyrebase
library
Ensure that the file words.csv is in the same directory as the python file.
To start the game, enter
python 1d_project_ctd.py
in a terminal and run.