Home

Published

- 1 min read

how to make a blank window open up in python

img of how to make a blank window open up in python

The solution for this is noted below

how to make a blank window open up in python

Solution

   import ctypes
ctypes.windll.user32.MessageBoxW(0, "Your message", "Your title", 1)
#opens up a black window

Try other methods by searching on the site. That is if this doesn’t work