[Tutor] Unable to Import : Numeric

Kirby Urner urnerk@qwest.net
Tue, 09 Apr 2002 09:29:35 -0700


At 03:32 PM 4/9/2002 +0100, Ed Hopkins wrote:
>Hi guys,
>
>I'm new to Python and installed numeric.
>
>When I try to import numeric I get this response:
>
> >>> import numeric


It's case sensitive.

Try

import Numeric

instead.

Kirby