6 Qustions about Python: Does it do GUI? more...

W

Will

I just discovered Python and looked briefly at one of the tutorials
for beginners...

It looks a lot like the old Command line Basic... I'm sure it does
much more but...

1 - Can you create windows, buttons, user input fields, etc as you
can with Visual Basic?

2 - Can you call Windows Procedures or what ever they call them
these days?

3 - Can you create your own objects with a bunch of methods and
properties?

4 - Can you create a Windows program that looks and feels like a
Windows program?

5 - Does it come with a compiler or must the user have the
interpreter on their machine?

6 - Why another language? Easier than C or C++ or Visual C ?? More
powerful than Visual Basic or the competing Borland productg?? Why
Python?

I'm interested as I never really took the time to become much of a C
programmer (or C++ or Visual C) - I've done lot's of assembly
language/embedded processor stuff & years ago Basic and some Visual
Basic... before .net... and wondered if Python would do me for some
projects I have always wanted to do?

Thanks for any info.

Will
 
J

John Roth

Will said:
I just discovered Python and looked briefly at one of the tutorials
for beginners...

It looks a lot like the old Command line Basic... I'm sure it does
much more but...

1 - Can you create windows, buttons, user input fields, etc as you
can with Visual Basic?

Yes and no. Yes, you can use one of several GUI toolkits
(an interface to TK comes with Python) to construct user
interfaces. No, it does not have the ease of drag and drop
building UI and data base programs that VB does.
2 - Can you call Windows Procedures or what ever they call them
these days?

With some work, yes. There are several extensions for that.
3 - Can you create your own objects with a bunch of methods and
properties?

That's how you program in Python, after all.
4 - Can you create a Windows program that looks and feels like a
Windows program?

If you want to. It's possible to access the Windows graphics API,
but it's not really the easiest thing to do. Most people will use
one of the other graphics toolkits.
5 - Does it come with a compiler or must the user have the
interpreter on their machine?

No compiler, but there are ways of avoiding having to install
the interpreter as a separate step.
6 - Why another language? Easier than C or C++ or Visual C ?? More
powerful than Visual Basic or the competing Borland productg?? Why
Python?

There's a Python history somewhere; it started out as the scripting
language for an operating system research project at a university in
the Netherlands. As a language, it tries to maintain a productive
balance between simplicity and power in an OO framework.
I'm interested as I never really took the time to become much of a C
programmer (or C++ or Visual C) - I've done lot's of assembly
language/embedded processor stuff & years ago Basic and some Visual
Basic... before .net... and wondered if Python would do me for some
projects I have always wanted to do?

Unless they are really unusual projectes, most likely.
Thanks for any info.

You're welcome.
 
A

Aahz

6 - Why another language? Easier than C or C++ or Visual C ?? More
powerful than Visual Basic or the competing Borland productg?? Why
Python?

The original intent was to create a language that borrowed ideas from
ABC and Pascal/Modula-3 while still being easy to hook to C libraries.
 
A

Andres Rosado-Sepulveda

John said:
Yes and no. Yes, you can use one of several GUI toolkits
(an interface to TK comes with Python) to construct user
interfaces. No, it does not have the ease of drag and drop
building UI and data base programs that VB does.

There are several GUI builders around (wxGlade, for example) but they
are still under develpment.

[snip]
No compiler, but there are ways of avoiding having to install
the interpreter as a separate step.

If this is a huge concern for you, check the freezing modules.
Unless they are really unusual projectes, most likely.

Like embedded processor stuff.

--
Andres Rosado
Email: (e-mail address removed)
ICQ: 66750646
AIM: pantear
Homepage: http://andres980.tripod.com/

A friend may well be reckoned the masterpiece of Nature.
-- Ralph Waldo Emerson
 
S

Sridhar R

Will said:
I just discovered Python and looked briefly at one of the tutorials
for beginners...

Python is lot more than one of those tutorials. You need to dig a
lot for better solutions. ;)
It looks a lot like the old Command line Basic... I'm sure it does
much more but...

Ofcourse, it is.
1 - Can you create windows, buttons, user input fields, etc as you
can with Visual Basic?

Well, let me tell you one thing. I was used to be a VB programmer.
After switching to the Linux world, I started learning GTK ( a GUI
toolking on top of X). Then I programmed my first project (an 8085
simulator), just in 3 days. I personally believe that, VB is not as
easy for programmer like me. I need flexiblity. But such feelings
were not in my mind when I was using VB and at that time I was looking
VB as the only easiest language in the World. Now I am never able to
see any other easier language than Python. Once again, welcome to the
Python world.

Anyway, try Glade (http://glade.gnome.org), a GUI builder. Also
for GUI try PyGTK (http://pygtk.org). Search google for windows
version of glade. For me, pygtk (or GTK) has killer API than MFC, or
whatever stuffs that are Windows-only.
2 - Can you call Windows Procedures or what ever they call them
these days?

Do you mean by Win32API. No. Please switch the viewpoint you're
viewing from. A person writing a software, shouldn't be programming
it platform specific. (For eg, a VB programmer can only write
programs for Windows world, though projects like http://vb2py.sf.net
exist). You should write programs in a portable way. Try using
existing python packages and modules for you job. If you need to do
more windows specific stuffs, then I remember win32api module for
python once, try that.
3 - Can you create your own objects with a bunch of methods and
properties?

and that's python.
4 - Can you create a Windows program that looks and feels like a
Windows program?

Try PyGTK (http://pygtk.org) (particularly look at the windows
part of the FAQ)
Try http://gtk-wimp.sf.net
This is enough. Even your VB can't create programs with WindowXP
look and feel (by default).
See screenshots at http://gtk-wimp.sf.net

5 - Does it come with a compiler or must the user have the
interpreter on their machine?

Yes and not necessary. It's better if the user has Python
installed on his machine. Otherwise, you have package your application
_completely_ everytime bundled. That is a space overhead. Projects
like py2exe and freeze are there for you question.
6 - Why another language? Easier than C or C++ or Visual C ?? More
powerful than Visual Basic or the competing Borland productg?? Why
Python?

I strongly discourage your point of mentioning VB as powerful. May
be your domain was SMALL.
When I was using VB, I thought VB was powerful. At that time, I know
only what you know. Then I
entered the open source world. I learn lot of languages. Now feel VB
is just well behind lot of the languages I learnt. Now python is in
front.
Learn python. Program python. Then say which is the powerful
language (for you). Don't back away by just seeing that python
doesn't have any wysiwyg stuffs. Remember UNIX, a most powerful
architecture than Windows, though windows has more attractive GUI (now
Linux has some the best GUIs)
I'm interested as I never really took the time to become much of a C
programmer (or C++ or Visual C) - I've done lot's of assembly
language/embedded processor stuff & years ago Basic and some Visual
Basic... before .net... and wondered if Python would do me for some
projects I have always wanted to do?

Yes. Python is a scripting language. It will decrease you
development time, increasing your productivity. Henessey and
Patterson say
"A program will spend 90% of the time in 10% of its code"
So write Python, and find that 10% of code (by profiling), then
optimise it by writing that part in C/C++.
AFAIC this is the most elegant way to write software

Search Google with this query "why python esr", and click on the "I
am feeling lucky" button (or surf to the first search result). I'll
definitely be a lucky person ;)

Thanks for any info.

Will

Happy hacking.
 
J

Jorgen Grahn

I just discovered Python and looked briefly at one of the tutorials
for beginners... ....
6 - Why another language? Easier than C or C++ or Visual C ?? More
powerful than Visual Basic or the competing Borland productg?? Why
Python?

Why *not* another language? Of the ones you mentioned, only C and C++
are freely available and widespread over multiple platforms -- and they
are very different from python and solve different problems.

(Your mileage may vary. I don't care about GUIs (although you have a point
there about non-native Windows GUIs being painful), and I don't care to
learn anything I cannot apply under Unix.)

/Jorgen
 
S

Steve Lamb

Yes and no. Yes, you can use one of several GUI toolkits
(an interface to TK comes with Python) to construct user
interfaces. No, it does not have the ease of drag and drop
building UI and data base programs that VB does.

Yes and kind-of. See Boa-constructor. :p
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top