Copy the following code on the left in your IDE to execute the process shown in the image on the right.
Importing a Library | import library as nickname
import math as mt
Using a Function from an Imported Library | nickname.function(argument1, argument2, ...)
mt.sqrt(25)
mt.pi
mt.fsum((2,3,4,5,6))
mt.trunc(35.555)