I have a school project in which i need to create a program that derives simple equations and it requires some sort of GUI. I found out that Jupyter(has all Python tools) has the math tools i need to make my program. However, creating a GUI in python isn't as convenient as i thought. So, would it be possible to make a GUI using Visual Studio form design that sends data to a python program to be executed, then send the result back to be displayed in the visual studio GUI.
For example, I enter an equation, "3x^3", in Visual Studio GUI program. The equation is then sent to a python program where it is executed and stored. Afterwards, it is sent back to the Visual Studio GUI and displayed as the answer.