Informatics Practices
Evaluate the above expressions by using IDLE as a calculator and verify the results that you get manually.
Related Questions
Write a Python command to display your school name, class and section, separated by "-".
Evaluate the following expressions manually:
(a) (2 + 3) ** 3 - 6/2
(b) (2 + 3) * 5//4 + (4 + 6)/2
(c) 12 + (3 * 4 - 6)/3
(d) 12 + (3 ** 4 - 6)//2
(e) 12 * 3 % 5 + 2 * 6//4
(f) 12 % 5 * 3 + (2 * 6)//4
Name three run-time errors that occur during Python program execution.
What is the difference between an error and exception?