moving from c++ to python

2005-05-21 Thread Michael
Hi, I'm a pretty sound programmer in C++, but would like to learn python! Does anyone know of any tutorial s aimed at me?? My biggest confusion so far is the lack of pointers in Python .. Regards Michael -- http://mail.python.org/mailman/listinfo/python-list

Re: moving from c++ to python

2005-05-21 Thread pythonchallenge
Michael wrote: Hi, I'm a pretty sound programmer in C++, but would like to learn python! Does anyone know of any tutorial s aimed at me?? My biggest confusion so far is the lack of pointers in Python .. Regards Michael I suggest that you start with the official Python tutorial

Re: moving from c++ to python

2005-05-21 Thread William Heymann
On Saturday 21 May 2005 03:19 am, Michael wrote: Yeah this tutorial is aimed at people that already know how to program. http://www.diveintopython.org/ It would still be a good idea though to go through the basic python tutorial at http://docs.python.org/tut/tut.html For someone already

Re: moving from c++ to python

2005-05-21 Thread Ville Vainio
Michael == Michael [EMAIL PROTECTED] writes: Michael me?? My biggest confusion so far is the lack of pointers Michael in Python .. Achtually, python uses pointers for everything. On the contrary there are no value types in python. MyClass* c = new MyClass(12,13); is equal to c