> For the complete documentation index, see [llms.txt](https://paula-abrantes.gitbook.io/python-gui/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://paula-abrantes.gitbook.io/python-gui/outras-opcoes/caixa-de-botoes-1.md).

# Caixa de botões

Esta função pode ser usada quando o utilizador precisa de escolher uma opção de um conjunto de alternativas. Este conjunto de botões é definido pelo programador. Quando uma opção é selecionada, ela retorna o texto correspondente a esse botão. Execute o seguinte código e veja o resultado

***from easygui import \**** \
***msg = "Qual é a sua disciplina favorita"*** \
***title = "Disciplina Favorita"*** \
***choices=\['Física','Biologia','Matemática','Outra']*** \
***choice=buttonbox(msg, title,choices)*** \
&#x20;     ***if choice=='Física':*** \
&#x20;           ***msgbox("Eu gosto de Física")*** \
&#x20;     ***elif choice=='Biologia':*** \
&#x20;            ***msgbox("Biologia é cool!")*** \
&#x20;     ***elif choice=='Matemática':*** \
&#x20;           ***msgbox("A Matemática é divertida")*** \
&#x20;     ***elif choice=='Outra':*** \
&#x20;           msgbox("Oh que pena! A sua disciplina não estar na lista")

![](https://1188156807-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MVpS92n6Qn31HDyaEgJ%2F-MVpqJVgznEL6G3EjmfE%2F-MVqx2tOeORFiudimvxy%2Fimage.png?alt=media\&token=2de75ce4-0f12-419a-a4ec-40514b3b2d33)

Se escolher Física aparecerá:

![](https://1188156807-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MVpS92n6Qn31HDyaEgJ%2F-MVpqJVgznEL6G3EjmfE%2F-MVqxKapwPs0IfqoxPVi%2Fimage.png?alt=media\&token=c04f22aa-fe09-4290-b00b-d7a553a95bd4)

Se escolher Biologia aparecerá:

![](https://1188156807-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MVpS92n6Qn31HDyaEgJ%2F-MVpqJVgznEL6G3EjmfE%2F-MVqxSq6oIReaP1PEsDL%2Fimage.png?alt=media\&token=d75f1496-30b7-4c4d-bbfa-c3666d5b76e6)

Se escolher Matemática aparecerá:

![](https://1188156807-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MVpS92n6Qn31HDyaEgJ%2F-MVpqJVgznEL6G3EjmfE%2F-MVqxhTiLTEve6nFGCJs%2Fimage.png?alt=media\&token=b6f141cd-ddf4-4ca2-870e-fe45be7b52db)

Se escolher Outra aparecerá:

![](https://1188156807-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MVpS92n6Qn31HDyaEgJ%2F-MVpqJVgznEL6G3EjmfE%2F-MVqyBCrB3IjXNrZwyRB%2Fimage.png?alt=media\&token=e2889f01-29ef-46e4-ac4a-ef921cf6af55)
