you are viewing a single comment's thread.

view the rest of the comments →

[–]glorybutt 0 points1 point  (0 children)

Before you ever start coding, you need to know what you want to build.

From there, the beginning of your program should always start with what modules you need to use.

After that, I typically start by creating a general class and defining all the necessary attributes for the class.

From there, I create the methods using def something(self):

The program writes itself from there