def g(x):
(q,d) = (1,0)
while q <= x:
(q,d) = (q*10,d+1)
return(d)
Answers
Answered by
0
(q,d) = (1,1)
hope it helped you
hope it helped you
Similar questions