Is there any library available in python for the graphical user entry input. I know about tk
but I believe it takes some line of codes to do that. I am looking for the shortest solution.
a = input('Enter your string here:')
In place of this, I want to get a dialogue box so that user can input there.
This did not serve the purpose. This only shows the dialogue box and you can't provide an input entry.
import ctypes # An included library with Python install.
ctypes.windll.user32.MessageBoxW(0, "Your text", "Your title", 1)