Re: [Tutor] Are there any MAC OSX python users here?

2007-01-22 Thread Markus Rosenstihl
Am 22.01.2007 um 10:23 schrieb ALAN GAULD: Forwarding to list. --- Tony Cappellini <[EMAIL PROTECTED]> wrote: They need to start Applications-Utilities->Terminal It turned out that the users needed to change the permissions to +x, then the script would be invoked normally. Ah, but you spe

Re: [Tutor] Running drPython and other Pythonscript on Macintosh OS/X

2006-12-06 Thread Markus Rosenstihl
Am 05.12.2006 um 09:44 schrieb Anders Persson: > Hi! > > I try to learn my son Development using Python. > I have found that drPython was a great enviroment and easy for him to > understand. > > Is't a problem running om Macintosh OS/X i have to start on > commandline, > OS/X > dosen't understan

Re: [Tutor] Need to be taught a trick or two about printing in neat columns

2006-11-02 Thread Markus Rosenstihl
Am 02.11.2006 um 15:14 schrieb Dick Moores: > At 03:31 AM 11/2/2006, you wrote: >> At 03:13 AM 11/2/2006, Kent Johnson wrote: >>> Luke Paireepinart wrote: Instead of helping you with your specific problem, I'll give you this information and see what you can make of it. >

Re: [Tutor] question about pylab

2006-10-31 Thread Markus Rosenstihl
Am 31.10.2006 um 08:35 schrieb shawn bright: > hey there, > i am trying to use a graph and chart app called matplotlib, but i > cannot figgure out how to have it plot a simple chart over time. > the docs say to use the function plot_date() but i cannot seem to get > the values to agree. > I am

Re: [Tutor] Clean up loop and search in a list

2005-10-13 Thread Markus Rosenstihl
Thank you for the fast reply Am 13.10.2005 um 19:43 schrieb Kent Johnson: > if len(filter(re_name.search, line)) > 0: > could be written > if re_name.search(line): this is not working because I am parsing a line in a list (i think): Traceback (most recent call last): File "telekom2.py

[Tutor] Clean up loop and search in a list

2005-10-13 Thread Markus Rosenstihl
Hi, I wrote a program (see below) to analyse my phone bill, which is shared by three others and I don't know if there is a way to make lines like this nicer: if len(filter(re_name.search, line)) > 0 and len(filter(re_misc.search, line)) == 0 Is there for example a way to search the whole list