Page 1 of 1

Python 2.2.3

Posted: Sun Jun 20, 2004 8:12 pm
by Tami
[b]Python[/b] is a powerful object oriented programming language. Clean syntax, high-level data structures, dynamic typing, and rich support libraries combine to make Python a very productive tool for many types of programming. Extensive support for XML, Internet protocols, data handling, and Web services is included. Several libraries for GUI development are available, as well as support of image processing, math, data base access, and much more.
This release contains bug fixes in core and built-ins, library, and tests.

License: Free
Minimum requirements: Windows 3.x/95/98/Me/NT/2000/XP
Uninstaller included?: Yes
File Size: 6.99MB

[url=\"http://python.org/\"][u]Python home site[/u][/url]

[url=\"http://download.com.com/redir?pid=10212813&merid=90035&mfgid=90035&edId=3&siteId=4&oId=3000-2069-10212813&ontId=2069

Python 2.2.3

Posted: Tue Nov 16, 2004 2:33 am
by biggazza
is python really good

Python 2.2.3

Posted: Tue Nov 16, 2004 3:19 am
by Trinity
In my opinion, Python is the best language for anyone new to programming. Python relies on exact syntax and whitespace (indenting) which means that it sets up habits that will benefit you a lot in many other langauges.

Python 2.2.3

Posted: Tue Nov 16, 2004 4:55 am
by Vercz
[color=\"green\"]exactly what trin said, and its pretty easy to learn/work with too http://www.killanet.net/forum3/public/style_emoticons/<#EMO_DIR#>/bigwink.gif\' class=\'bbc_emoticon\' alt=\';)\' /> [/color]

Python 2.2.3

Posted: Tue Nov 16, 2004 12:49 pm
by Kretz
I might try it out later... but atm: C++ all the way http://www.killanet.net/forum3/public/style_emoticons/<#EMO_DIR#>/smile.gif\' class=\'bbc_emoticon\' alt=\':)\' /> ... its realy fun to learn C++. Is Python better? And is it easier?

Python 2.2.3

Posted: Mon Dec 06, 2004 5:21 am
by Trinity
As a first language, I think that Python would certainly be easier than C++, again simply for the fact that whitespace is part of its syntax, and getting into the habit of using whitespace correctly which will help with indenting in C++

Python 2.2.3

Posted: Tue Jan 04, 2005 4:09 pm
by tidy trax
Python is a good language to start with in some ways (Mainly because it's simple), but in other ways it's not so good.

Python will get you used to things such as indentation, but it's missing other important aspects of some of the major languages such as strict variable types, for example:

[code]def count(n,n2):
   for i in range(n,n2 + 1):
       print i

count(1,25)[/code]

And the C++ equivalent:

[code]#include <iostream>
#include <stdlib.h>

using namespace std;

void count(int n, int n2) { //Note that you have to explicitly define the variables as an "int".
   while (n <= n2) {
        cout<<n<<endl;
        n++;
   }
}

int main(int argc, char *argv[]) {
   count(1,25);
   cin.get();
   return 0;
}[/code]

Python 2.2.3

Posted: Tue Jan 04, 2005 4:13 pm
by ner0
wow that is a pretty big difference... I -did- start learning C++, but i\'m distracted too easily http://www.killanet.net/forum3/public/style_emoticons/<#EMO_DIR#>/biggrin.gif\' class=\'bbc_emoticon\' alt=\':D\' />