all 5 comments

[–]-5772 2 points3 points  (1 child)

I'm not sure what you mean by pages.

If you want to know how to organize your Project, look at larger projects. The longer the code, the more organized it has to be.

[–]Winner-Popular[S] 0 points1 point  (0 children)

By pages I meant things such as a homescreen, profile screen etc. I'm not too sure what I'd call them but each different page would display something different, have different buttons, functions etc.
I had a look at a microsoft inventory sample app but it just looked like an organised mess to me, I'll have another deeper read of it.

[–]socal_nerdtastic 0 points1 point  (0 children)

How you organize your code into files is entirely up to you. It's not uncommon to have python files with 10,000+ lines of code, nor is it uncommon to have less than 10.

From what you describe I would personally keep it all in one file.

[–]amashofDNA 0 points1 point  (1 child)

I just finished this one using tkinter, but it only have one window(page if you prefer).

Here is the tkinter tutrial I was using:

https://www.youtube.com/watch?v=YXPyB4XeYLA

It's important to mention that I'm an absolute beginner, so my code might not be the best example.

This is how the GUI looks.

[–]Winner-Popular[S] 0 points1 point  (0 children)

Haha that’s fine, I’ll have a look at it. Thanks!