+ 2
Can anyone please tell me which python module needs to be imported to invoke the following functions : 1. sin()2.fabs()3.trunc()
2 Antworten
+ 4
hi, you need to import “math”
import math
math.sin(...)
math.fabs(...)
math.trunc(...)
+ 1
Yeah thank u sir !