degrees and radians.

Simon Foster simon at nospam.demon.co.uk
Sun May 5 10:43:14 EDT 2002


"Jim Richardson" <warlock at eskimo.com> wrote in message
news:tvl2ba.4q7.ln at 127.0.0.1...
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>

...

>
> Well, now that I have conquered elementry trig, I am now going to try
> for simple python and figure out how to add the contents of a tuple to
> the contents of another tuple...
>

Try '+'

>>> a
(1, 2)
>>> b
(3, 4)
>>> a+b
(1, 2, 3, 4)
>>>









More information about the Python-list mailing list