Contact: aviboots(AT)netvision.net.il
40,853 questions
53,258 answers
573 users
def percentage(part, whole): return 100 * float(part)/float(whole) print(percentage(16, 32), '%', sep='') print(percentage(32, 16), '%', sep='') print(percentage(15, 32), '%', sep='') ''' run: 50.00% 200.00% 46.88% '''