This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients christian.heimes, mikeuser_01, terry.reedy
Date 2020-12-03.13:20:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1607001605.32.0.122017206392.issue42555@roundup.psfhosted.org>
In-reply-to
Content
You have to import the math module first and then reference the sqrt function of the math module.

>>> import math
>>> math.sqrt(25)
5.0
History
Date User Action Args
2020-12-03 13:20:05christian.heimessetrecipients: + christian.heimes, terry.reedy, mikeuser_01
2020-12-03 13:20:05christian.heimessetmessageid: <1607001605.32.0.122017206392.issue42555@roundup.psfhosted.org>
2020-12-03 13:20:05christian.heimeslinkissue42555 messages
2020-12-03 13:20:05christian.heimescreate