Discuss / Python / answer

answer

Topic source
# -*- coding: utf-8 -*-
s1 = 72
s2 = 85
r = (s2 - s1) / s1 * 100
print('%.1f %%' % r)

  • 1

Reply