10
Question Question 1(j)
Find the output generated by following code fragments :
T5 = (17,)
type(T5)Output
<class 'tuple'>
Explanation
Since 17 is enclosed in parenthesis and a comma is added after it, so T5 becomes a single element tuple instead of an integer.