Evaluate the above expressions by using IDLE as a calculator and verify the results that you get manually.
(a)
>>>(2 + 3) ** 3 - 6 / 2
122.0
(b)
>>>(2 + 3) * 5 // 4 + (4 + 6) / 2
11.0
(c)
>>>12 + (3 * 4 - 6) / 3
14.0
(d)
>>>12 + (3 ** 4 - 6) // 2
49
(e)
>>>12 * 3 % 5 + 2 * 6 // 4
4
(f)
>>>12 % 5 * 3 + (2 * 6) // 4
9