Good job on learning the basic concepts of programming using Python! Before you say adieu to our basic track and heading on to a more specific application of Python such as scripting, web application or data analysis, we challenge you to do our FUN game-centered culminating project, 2048!
You might have played it before, but now that you are a coding ninja, you are going to implement it! Don't worry because we will help you along the way and we assure you that finishing it will level up your skills. Plus, it's a proud thing to share with your peers!
This project is from Principles of Computing offered by Rice University in Coursera. Additional instructions were added on the template file to help you implement the game step-by-step.
Let the game begin!
Please use the files here for your project.
-
- logic.py
- poc_2048_gui.py
- requirements.txt
-
Install the required library for the game GUI:
pip install simpleguitk
or
pip install -r requirements.txt
- To run:
python logic.py
!> Put your working files(e.g. logic.py, poc_2048_gui.py) under one 2048
folder.