Discuss / Python / 作业

作业

Topic source

r = (85-72)/72 * 100 print('%.1f%s' % (r,'%'))

#或者 r = (85-72)/72 * 100 print('%.1f%%' % r)


  • 1

Reply