Computer Science, asked by kushbhu0808, 3 months ago

3.Write the output of the following:
i) x=10
print(x)
print(type(x))​

Answers

Answered by krishnas10
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