-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdayy_9.py
More file actions
44 lines (44 loc) · 902 Bytes
/
Copy pathdayy_9.py
File metadata and controls
44 lines (44 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import math
print(math.sin(90))
print(math.cos(90))
print(math.tan(90))
print(math.sinh(90))
print(math.cosh(90))
print(math.tanh(90))
print(math.asin(90))
print(math.acos(90))
print(math.atan(90))
print(math.asinh(90))
print(math.acosh(90))
print(math.atanh(90))
print(math.log(90))
print(math.log10(90))
print(math.log2(90))
print(math.pow(90,2))
print(math.sqrt(90))
print(math.factorial(90))
print(math.fabs(90))
print(math.floor(90.9))
print(math.ceil(90.9))
print(math.comb(90,2))
print(math.perm(90,2))
print(math.fmod(90,2))
print(math.modf(90.9))
print(math.fsum([1,2,3,4,5]))
print(math.prod([1,2,3,4,5]))
print(math.fsum([1,2,3,4,5]))
print(math.prod([1,2,3,4,5]))
print(math.gcd(90,2))
print(math.lcm(90,2))
print(math.e)
print(math.pi)
print(math.inf)
print(math.nan)
print(math.e)
print(math.pi)
print(math.inf)
print(math.nan)
print(math.e)
print(math.pi)
print(math.inf)
print(math.nan)