Python-Learn/PythonBasic/LessonCode/theString.py

8 lines
294 B
Python
Raw Permalink Normal View History

2022-03-20 08:15:28 +00:00
#小明的成绩从去年的72分提升到了今年的85分请计算小明成绩提升的百分点并用字符串格式化显示出'xx.x%'只保留小数点后1位
# -*- coding: utf-8 -*-
s1 = 72
s2 = 85
r = ((s2/s1)-1.0)*100
print('小明的成绩今年提升了:%.01f %%' % r)