predict the output of print(type(20/3))
Answers
Answered by
0
Explanation:
float data type
<class = "float">
this is the answer
Answered by
1
Answer:
Predict the output of the following codes :
a, b, c, = 10, 20, 30
p, q, r=c-5, a+3, b-4
print (a, b, c:', a, b, c, end=' ')
print ('p,q,r:', p, q,r)
Similar questions