Tetris Ungraded

Due Sunday 13-April, at 10:30pm


To start

  1. Create a folder named tetris
  2. Create a file: tetris.py.
  3. Edit tetris.py and build Tetris as described below.
  4. When you have completed and fully tested it, submit it to the appropriate assignment on Gradescope. For tetris.py you may submit up 999 times, but only your last submission counts.

Some important notes

  1. This is completely optional and ungraded.
  2. If you want to receive feedback, submit your solution before the deadline

Limitations

Do not use sets, dictionaries, try/except, classes, or recursion this week.

Problems


Tetris
Write Tetris according to the design given in this step-by-step tutorial. You may not use a different design, even if you think there’s a better way to do it (there probably is, but you still have to do it this way). This may seem limiting, but sometimes you have to write code according to a specific algorithm, rather than writing code to solve a specific problem.