Record what happens when the following statements are executed:
(a) print (n = 17)
(b) print (8+9)
(c) print (4.2, "hello", 6-2, "world", 15/2.0)
(a) It raises TypeError as 'n' is an invalid keyword argument for print() function.
print()
(b) 17
17
(c) 4.2 hello 4 world 7.5
4.2 hello 4 world 7.5