0

I am trying to implement a game of tetris in python and am wondering which of wxpython or pygame is better to go with. Any ideas would be appreciated.

1

1 Answer 1

3

wxpython is primarily used for developing window-based user interfaces. Putting a game together using it would be pretty hackish, I think. Pygame is, of course, specifically made for game creation, so it will be a better bet.

Some other projects you might want to look into are: http://arcticpaint.com/projects/rabbyt/ and: http://www.pyglet.org/ — I personally found Pyglet to be a better library than Pygame for doing small game prototypes.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.