LoginSignup
2
2

More than 5 years have passed since last update.

めざせpythonライブラリマスター (63)easygui

Posted at

【ライブラリ説明】

 簡単にGUIが作れる

【プログラム】

# -*- coding: utf-8 -*-

import easygui

easygui.ynbox('Shall I continue?', 'Title', ('Yes', 'No'))

easygui.msgbox('This is a basic message box.', 'Title Goes Here')

easygui.buttonbox('Click on your favorite flavor.', 'Favorite Flavor', ('Chocolate', 'Vanilla', 'Strawberry'))

【結果】

 title.png

 ok.png

 select.png

【参考サイト】

 pypi
 github
 API

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2