My idea is to make a GUI with a grid and I want that the grid it self to be centered in the window.
root = Tk()
root.state('zoomed')
telaInicial = Frame(root)
botaoNovoAluno = Button(telaInicial, text = "Novo aluno", padx = 5, pady = 5)
botaoEliminarAluno = Button(telaInicial, text = "Eliminar aluno", padx = 5, pady = 5)
botaoAvaliacaoAluno = Button(telaInicial, text = "Avaliaçao aluno", padx = 5, pady = 5)
botaoVerDados = Button(telaInicial, text = "Ver dados", padx = 5, pady = 5)
botaoNovoAluno.grid(row = 0, column = 0, padx = 10, pady = 10)
botaoEliminarAluno.grid(row = 0, column = 2, padx = 10, pady = 10)
botaoAvaliacaoAluno.grid(row = 1, column = 1, padx = 10, pady = 10)
botaoVerDados.grid(row = 2, column = 1, padx = 10, pady = 10)
raise_frame(telaInicial)
root.mainloop()
note: Sorry for the English, its not my mother language.