Discuss / Python / 课后作业

课后作业

Topic source
s1 = 72
s2 = 85
r = s1 / s2
print('{0:.1f}%'.format(r))
print('%.1f%%' % r)

  • 1

Reply