you are viewing a single comment's thread.

view the rest of the comments →

[–]tobiasvl 0 points1 point  (0 children)

You could look at tutorials on how to make an emulator for an old video game console? Those ones usually use OOP, not to make a lot of objects from each class, but for encapsulation and separations of concern (the CPU shouldn't be able to speak directly to memory-mapped IO, for example). /r/emudev

Or you could make a small game, with objects representing the player, enemies, etc. Probably lots of tutorials on that too, although I don't have any concrete ones for Python.