18.Write the output of the following code: a=10 b=200 print(a/b) print(a**5, '/t', b*2)
Answers
Answered by
0
Answer:
a=10
b=200
print(a/b)
print(a**5,'/t',b*2)
OUTPUT:
0.05
100000____ 400
NOTE:
underscore here refers 4 space since /t(tab) is used
Similar questions