Is there anything similar to JOptionPane in python? As in, does it have inbuilt graphics libraries, if so, could you just show how to you would do something similar in Python?
In Java you can simply do this:
import java.swing.*;
JOptionPane.showMessageDialog(null, "Hello, World");
Also, javaScript has something similar:
alert("Hello, World");
It actually depends on what GUI framework you use.