I am looking for Forms GUI

I apologize if my question is simple. I have been developing for some time in VB .Net and I want to use Python in applications with several data-entry Forms. Is there any tool that allows you to design forms in the graphic way that Visual Studio or Microsoft Access does ? Y tried Tkinter and a few more, but they are no capable of such facility. Thank you very much.

There is no equivalent but there are number of frameworks you can use:
Django forms link
PyQt link
wxPython link
Each one has its merits and quirks and each one has an initial learning hump so I suggest a quick look at each and you decide which one you invest your time. Personally I would avoid Tkinter as its less widely used in production environments.

Thank you very much Mike.