Computer Science, asked by gamerthekrazy, 8 months ago

What will be the output produced by following code?

a,b,c,d=9.2, 2.0, 4, 21
print(a/4)
print(a//4)
print(b**c)
print(d//b)
print(a%c)

Answers

Answered by sidhant014
0

Answer:

it will follow the value of a b c and d what you have assigned to them in the first line itself

Similar questions