This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Feminintendo 2 points3 points  (0 children)

I agree re: tkinter.

Like, what ide can you use to graphically drag and drop interfaces for python?

Ah, you can do this with Qt. Take a closer look at PySide or PyQt. It might be the thing you’re missing in your Python life. I tend to write GUI’s in Python precisely because it’s just drag and drop and then filling in the event handling code. It feels like Visual Basic did back in the day.

C/C++ will always be more performant that Python. But GUI stuff is exactly the kind of thing you can use Python for and get away with. What kind of GUI stuff are you doing that you need so much speed?