"Asun Friere" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | On Nov 19, 3:46 pm, windspy <[EMAIL PROTECTED]> wrote: | > use it like: x = math.sqrt (100) and math.sin(x) | | alternatively import like this: | | from math import sqrt, sin | | ... and use it like you have.
Or, import math as m # to save typing, especially in interactive mode x = m.sin(1) #etc -- http://mail.python.org/mailman/listinfo/python-list