Posts by Renato David • 21 points
1 post
-
2
votes1
answer263
viewsQ: Euro banknote sorting program? Python
def Dinheiro_vivo(x): while x > 0.00: if x>=50.0: print( x//50,('notas de 50 euros')) n = x % 50 elif x<50 and x >=20: print (y//20,('notas de 20 euros')) x= x %20 elif x<20 and x…
pythonasked Renato David 21