What output will be generated when the following Python code is executed?
N= 754823
while ( N != 0):
r= N % 10
if r%2 == 0:
f += r
else:
s += r
N = N // 10
print ( f – s)
Answers
Answered by
1
Answer:
N=N//10...............
Similar questions