Write down following expression in Python. a(b+c)d
Answers
Answered by
0
Answer:
#please make me brainliest
Explanation:
In python
+ = addition
- = subtraction
* = multiply
/ = divide
so, a(b + c)d = a*(b + c)*d
Similar questions