Código
##################### # Porcentajes # # Autor: Sthefano02 # ##################### def Porcentaje(X,Y): return X*Y/100 print ''' ===== Porcentajes ===== ======================= ''' X = input('Valor > ') Y = input('Portencaje > ') print 'El porcentaje es %s' % Porcentaje(X,Y)
Idea original de Javier http://foro.portalhacker.net/index.php/topic,113363.0.html