I've been playing around with python and Tkinter for quite a while now, and I've mainly understand how it work. Whilst creating a GUI using python, I used .pack() to place objects into it.
I wanted more control of placements, so I soon switched to a .grid() which allowed me to have better control, but I found it very frustrating to use when I wanted to add more objects, I had to change the value of .grid(). Is there an alternative to .pack() and .grid?
I'm willing to try any suggestions, but hopefully if there is another method which would give me better control and is easier to change positions if I want to come back and add content into it, I would really apricate it if some let me know.
Also, if anyone wishes to explain how the alternative method they provide work or just a link to a tutorial, please do.