def multiplo(x):
somamulti= somaImpares(x) + somaPares(x)
if somamulti/10==0:
return somamulti/10
else:
return
In this function I did what happens is as follows: somamulti
adds 2 values, in this case it can be 120 + 31 = 151 and my first function will test if this value is multiple of 10, and, if it would give me that result. otherwise it would return me the nearest multiple of 10 greater than or equal to the sum of the two above values, in which case it would return me 160.
What I do not know is how I get to this value 160, that is, I can not do the last part of else
.