206k views
0 votes
Write the following arithematic expression using operaters in python
a) a^4+b^4

1 Answer

1 vote

Answer:

pow(a,4)+pow(b,4)

Step-by-step explanation:

Pow(x,y) is used for power in python. Where x is base and y is exponent

User Alexander Hansen
by
3.9k points