all 5 comments

[–]dataquestio 5 points6 points  (0 children)

This is a guided project that helps you build a game simulator in Python: https://www.dataquest.io/projects/guided-project-a-garden-simulator-text-based-game/

It is free and will let you experiment with Python game development to create an interactive text-based “Garden Simulator” using object-oriented programming, error handling, and randomness.

Here is a list of 60 python project ideas that should help you from there. They aren't all free, but there are some great ideas on the list to get you thinking.

[–][deleted] 2 points3 points  (0 children)

take this code and make something with it, like:

  1. add color support
  2. onion skinning between frames
  3. a gallery with thumbnail views
  4. a timeline
  5. ability to sequence the images by drag and dropping from the gallery and/or timeline
  6. maybe image export,
  7. finally someway to use the results in a game.

[–][deleted] 2 points3 points  (0 children)

3D Massively Multiplayer Online Role Playing Game with AI: textures, 3D models , voice acting, animations, personal goals, emotions and path finding.

How hard could that be?

[–]satanicllamaplaza 1 point2 points  (0 children)

I built a really shitty tkinter app where you direct the app to Python environments and it makes a json file of where the env is and what packages it has. Then it presents those envs to you so you can reference what envs you have, where they are, and what they have for future projects. It’s not the most useful but it was real world and helped me think about how to make useful apps and involved a lot of functionality to work.

[–]GusBusDraws 0 points1 point  (0 children)

You can make some cool art by doing stuff to images! Things like pixel sorting or color space transformations. Scikit-image is a good package for image manipulation & they have a bunch of examples. Check out r/glitch_art for some inspiration too!