So, I have a python script that run a Tkinter GUI which have a button widget that call executable that is written in C. But, everytime I click that button, a console that running that C executable pop up and then close after it's done running. I call the executable using
import subprocess
subprocess.call[args]
How to hide that pop up? Because I'm using GUI and it's kinda not nice if console pop up nowhere.