Re: [Tutor] G'day

2006-02-20 Thread Joal Heagney
t the "Blender 2.3 Guide", nearly outdated now, and that's barely two years later. Joal Heagney ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] IDE - Editors - Python

2006-02-10 Thread Joal Heagney
into the computer's soundcard) - as a handy-dandy scientific calculator when I can't be bothered hunting down my RL scientific calculator :). Most of these have console-argument, interactive console (raw_input) or file-based input methods, with a text console output. Joal Heagney

Re: [Tutor] Postgresql+Python -tutorial?

2006-02-10 Thread Joal Heagney
ostgresql does some things differently from other databases (Calling a function to fill a default value for autoincrementing, rather than a dedicated SERIAL field type.) If you're planing to access the database directly from python, this is no hassle, b

Re: [Tutor] Program to lock folders under win32

2005-09-03 Thread Joal Heagney
Mark Kels wrote: > Hi list. > > I want to make a program to lock folders (so the user can only access > them if he knows the password) under win32, the only problem is that I > have no idea how to start or what to do. Do you guys have any ideas of > how to do it? > > Thanks! > > Other option mi

Re: [Tutor] PYTHON????

2005-09-01 Thread Joal Heagney
[EMAIL PROTECTED] wrote: > Dear Python, > How does a calculator multiply? I want to create a computer software that > can multiply. How do I program the computer to multiply? Basically the same way you multiply two big numbers on paper, by long multiplication. E.g. Human 24 * 51 24 * 5

Re: [Tutor] Calling a function

2005-06-09 Thread Joal Heagney
Kevin Reeder said: >def do_timing(num_times, *funcs): Took me a while to work out what went wrong, but the first part occurs here. The *funcs bit means that any extra arguments passed to do_timing will be put into a tuple called funcs. So do_timing(100, dosomething, dosomethingelse) will pass