How can I create a simple message box in Python?

后端 未结 17 1323
心在旅途
心在旅途 2020-11-30 16:44

I\'m looking for the same effect as alert() in JavaScript.

I wrote a simple web-based interpreter this afternoon using Twisted.web. You basically submit

17条回答
  •  [愿得一人]
    2020-11-30 17:23

    Have you looked at easygui?

    import easygui
    
    easygui.msgbox("This is a message!", title="simple gui")
    

提交回复
热议问题