Is it better to do it all at once? I’m very new to wxPython and I’m thinking it would be better to write the program in a way familiar to me, then apply the wxPython gui to it after I’m satisfied with the overall design of the app. Any advice?
Share
This is a viable approach. In fact, some programmers use it for the advantages it brings:
However keep in mind that it requires some careful design. You’ll want your “logic code” to be free from GUI constraints, and sometimes it is difficult (especially when the code relies on GUI idioms like an event loop).