fork download
  1. import math # funp.py
  2. def funp(x): # rextester.com/EGXCM83414
  3. rad = x * math.pi / 180
  4. a = x ** (1 / 4)
  5. b = x**(1/2) #; print (b)
  6. c = math.cos(rad); print(c)
  7. d = math.log10(x) #; print (d)
  8. e = math.exp(b)
  9. f = math.log(x,math.exp(1))
  10. return a + b + c + d + e + f
  11.  
  12. x = 90
  13. y = funp(x)
  14. print(x, y)
  15.  
Success #stdin #stdout 0.11s 14300KB
stdin
Standard input is empty
stdout
6.123233995736766e-17
90 13203.993025926646