Computer Science, asked by vanshgrover0303, 2 days ago

Write the python expression for following; 2

A= b4+ p x q​

Answers

Answered by allysia
2

Answer:

Use this:

A= (b * * 4)+(p*q)

Explanation:

  • a * * b : Raises a tot he power of b
  • a*b: returns a times b
  • a+b: returns the sum

Similar questions