进行470分的考试。如果我获得450分,那么百分比是多少 请注意,100/470 = 0.21276595744
def percent(total):
percent = total*0.21276595744
x= percent(int(450))
print (percent(450))
输出: 无
答案 0 :(得分:3)
您需要在函数中返回一个值:
def percent(total):
return total*0.21276595744
print (percent(450))