Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Newbie question on python programming

37 views
Skip to first unread message

Chris Williams

unread,
Jul 20, 2012, 7:38:53 PM7/20/12
to
Hello

I hope this is the right newsgroup for this post.

I am just starting to learn python programming and it seems very
straightforward so far. It seems, however, geared toward doing the sort
of programming for terminal output.

Is it possible to write the sort of applications you can create in
something like c-sharp or visual c++, or should I be looking at some
other programming language? I am using ubuntu 12.04.

Thanks,

Chris.

--- Posted via news://freenews.netfront.net/ - Complaints to ne...@netfront.net ---

Ian Kelly

unread,
Jul 20, 2012, 8:30:25 PM7/20/12
to Chris Williams, pytho...@python.org
On Fri, Jul 20, 2012 at 5:38 PM, Chris Williams
<purple...@googlemail.com> wrote:
> Hello
>
> I hope this is the right newsgroup for this post.
>
> I am just starting to learn python programming and it seems very
> straightforward so far. It seems, however, geared toward doing the sort of
> programming for terminal output.
>
> Is it possible to write the sort of applications you can create in something
> like c-sharp or visual c++, or should I be looking at some other programming
> language? I am using ubuntu 12.04.

There are plenty of options for GUI programming in Python. Among the
most popular are Tkinter, wxPython, PyGTK, and PyQT, all of which are
cross-platform and free. Also, since you specifically mention the
.NET languages, IronPython runs on .NET and so is able to make full
use of the .NET APIs including Windows Forms and WPF. A more
comprehensive list can be found at:

http://wiki.python.org/moin/GuiProgramming

Tom P

unread,
Jul 21, 2012, 12:13:31 PM7/21/12
to
Another platform independent approach is to write the program as a web
server something like this-
def application(environ, start_response):
start_response("200 OK", [("Content-type", "text/plain")])
return ["Hello World!"]

if __name__ == '__main__':
from wsgiref.simple_server import make_server
server = make_server('localhost', 8080, application)
server.serve_forever()

Run this and then use your browser to connect to localhost:8080
You can then use html features such as forms for input/output.

0 new messages