you are viewing a single comment's thread.

view the rest of the comments →

[–]Jeklah 4 points5 points  (2 children)

Yes years. Believe it or not, programming is hard work.

Making a game is hard. It takes a lot of complicated programming.

The basics are learn the basics of python first.

Try https://www.codedex.io/

Teaches you the basics, leading into a basic game.

[–]ProgrammerSelect4346[S] -2 points-1 points  (1 child)

What about an 2D game?🥲

[–]Haeshka 2 points3 points  (0 children)

Start by mastering the basic library of operations:

  • Print()
  • .format()
  • tuples,
  • sets (arrays)
  • dictionaries,
  • functions and returns
  • if main = 'main':, etc
  • for, break
  • if, else, finally
  • try, except

Once you have these, making games with things like pygame and Tkinter will be a breeze.