PROGRAMMING:Calculating function f (x)
The function f (x) is calculated
f(x) =![ Capture. JPG] (~ / fb94b087-9ec5-4638-b198-91b77f2f435e. JPG)
###Input format:
Enter x on one line, x > 0.
###Output format:
Output the result on one line, and the function value output retains 3 decimal places.
###Input sample 1:
Here is a set of inputs. For example:
```in
three point six four
```
###Output sample 1:
The corresponding output is given here. For example:
```out
f(3.64)=-3.907
```
###Input sample 2:
Here is a set of inputs. For example:
```in
twenty
```
###Output sample 2:
The corresponding output is given here. For example:
```out
f(20.0)=1212904.080
```
answer:If there is no answer, please comment
```
import math
x=float(input())
y=math.sin(35/180*math.pi)+(math.e**x-15*x)/math.sqrt((x**4+1))-math.log(7*x)
print("f({0})={1:.3f}".format(x,y))
```
f(x) =![ Capture. JPG] (~ / fb94b087-9ec5-4638-b198-91b77f2f435e. JPG)
###Input format:
Enter x on one line, x > 0.
###Output format:
Output the result on one line, and the function value output retains 3 decimal places.
###Input sample 1:
Here is a set of inputs. For example:
```in
three point six four
```
###Output sample 1:
The corresponding output is given here. For example:
```out
f(3.64)=-3.907
```
###Input sample 2:
Here is a set of inputs. For example:
```in
twenty
```
###Output sample 2:
The corresponding output is given here. For example:
```out
f(20.0)=1212904.080
```
answer:If there is no answer, please comment
```
import math
x=float(input())
y=math.sin(35/180*math.pi)+(math.e**x-15*x)/math.sqrt((x**4+1))-math.log(7*x)
print("f({0})={1:.3f}".format(x,y))
```