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
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
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
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
[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
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