The from ... import * statement can be used to avoid having to prefix the functions with the module name.
>>> from math import * >>> sin(1) 0.8414709848078965 >>> pi 3.1415926535897931