please solve ....................both i ) and ii)
Attachments:
Answers
Answered by
1
Answer:
ii) is write answer
Explanation:
plz follow me
Answered by
3
Question:-
➡ Write the equivalent Python expression for the following.
Solution:-
Given expression,
a=b(c^9 + sin(x))
The python expression will be,
a=b*(pow(c,9)+math.sin(x))
Given expression,
p =|q+r|/(√(s+t))
The python expression will be,
p=math.abs(q+r)/(math.sqrt(s+t)
Similar questions