Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
def percentage(percent, whole): return (percent * whole) / 100.0 print(percentage(10, 32), '%', sep='') print(percentage(20, 16), '%', sep='') print(percentage(30, 200), '%', sep='') ''' run: 3.2% 3.2% 60.0% '''