Re: [Tutor] Sqrt is listed as always available.

2006-02-17 Thread Kent Johnson
struggle wrote: > Hello everybody : > I feel very interest in the python language ! And I want to learn > something about the language , > I want to know how it be designed and implemented . I look into the > www.python.org , but I didn't > find anything about that , can you help me ? If you

Re: [Tutor] Sqrt is listed as always available.

2006-02-17 Thread struggle
Hello everybody : I feel very interest in the python language ! And I want to learn something about the language , I want to know how it be designed and implemented . I look into the www.python.org , but I didn't find anything about that , can you help me ? ___

Re: [Tutor] Sqrt is listed as always available.

2006-02-15 Thread Matthew Webber
PROTECTED] On Behalf Of Kermit Rose Sent: 15 February 2006 08:53 To: tutor@python.org Subject: [Tutor] Sqrt is listed as always available. Sqrt is listed as always available. Why did I get these diagnostics? >>> Sqrt(J0) Traceback (most recent call last): File "", line

Re: [Tutor] Sqrt is listed as always available.

2006-02-15 Thread Bob Gailer
Kermit Rose wrote: > Sqrt is listed as always available. > Where did you see that? Try: >>> import math >>> math.sqrt(24) 4.8989794855663558 > Why did I get these diagnostics? > > > Sqrt(J0) > > Traceback (most recent call last): > File "", line 1, in -toplevel- >

[Tutor] Sqrt is listed as always available.

2006-02-15 Thread Kermit Rose
Sqrt is listed as always available. Why did I get these diagnostics? >>> Sqrt(J0) Traceback (most recent call last): File "", line 1, in -toplevel- Sqrt(J0) NameError: name 'Sqrt' is not defined >>> >>> sqrt(J0) Traceback (most recent call last): File "", line 1, in -toplevel- s