3.Write the output of the following:
i) x=10
print(x)
print(type(x))
Answers
Answered by
1
Answer:
10
<class 'int'>
Explanation:
print(x) --> prints the value of x i.e, 10
print (type (x)) ---> prints the type of x i.e, int (as shown above)
Similar questions