[tutor] Do I need to have a strong math skills [What's the hypotenuse? / Mathworld]

Danny Yoo dyoo@hkn.eecs.berkeley.edu
Sun Nov 3 20:12:02 2002


On Sun, 3 Nov 2002, Danny Yoo wrote:

> Here are two links that are relevant to your question:
           ^^^
>
>     http://mathworld.wolfram.com/Hypotenuse.html
>     http://mathworld.wolfram.com/RightTriangle.html
>     http://mathworld.wolfram.com/PythagoreanTheorem.html

Ahem.

####
>>> def successor(number):
...     if number == 'zero': return 'one'
...     if number == 'one': return 'two'
...     if number == 'two': return 'two'
...
>>> successor('zero')
'one'
>>> successor(successor('zero'))
'two'
>>> successor(successor(successor('zero')))
'two'
###


I mean to say:

"Here are three links that are relevant to your question."  I have such a
hard time counting sometimes.  *grin*


My apologies!