Computer Science, asked by mathisri48283, 1 year ago

def g(x):
(q,d) = (1,0)
while q <= x:
(q,d) = (q*10,d+1)
return(d)




Answers

Answered by Iamkeetarp
0
(q,d) = (1,1)

hope it helped you
Similar questions