diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index 805f619eab8c07..9a8c1c5d51f1b5 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -637,6 +637,11 @@ The Packer .. index:: single: packing (widgets) +.. note:: + For new code, using the :meth:`grid` geometry manager is recommended over + :meth:`pack`. While :meth:`pack` is equally powerful, :meth:`grid` is easier + to use and makes it less onerous to create layouts that look appealing. + The packer is one of Tk's geometry-management mechanisms. Geometry managers are used to specify the relative positioning of widgets within their container. In contrast to the more cumbersome *placer* (which is