On Thu, 30 Mar 2023 19:22:53 +0200, Roel Schroeven <r...@roelschroeven.net>
declaimed the following:

>Either import the things you need explicitly: "from math import sin, 
>cos, exp" (for example).
>Or a plain import: "import math" combined with "math.sin", "math.cos".
>Or use an abbreviation: "import math as m" combined with "m.sin", "m.cos".

        Or, for this particular example of not wanting math.pow...

>>> from math import *
>>> pow(3, 4)
81.0
>>> del pow
>>> pow(3, 4)
81
>>> 
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to