在python中有没有类似于JOptionPane的东西?如果有的话,它是否有内置的图形库,如果是这样,你能展示如何在Python中做类似的事情吗?
在Java中,你可以这样做:
import java.swing.*;
JOptionPane.showMessageDialog(null, "Hello, World");
此外,javaScript有类似的东西:
alert("Hello, World");
答案 0 :(得分:2)
它实际上取决于您使用的GUI框架。
QtGui.QMessageBox.question(self,
'Message',
"Are you sure to quit?",
QtGui.QMessageBox.Yes,
QtGui.QMessageBox.No)
wx.MessageBox('Download completed',
'Info',
wx.OK | wx.ICON_INFORMATION)