题解 -Python3| #学生基本信息输入输出#
学生基本信息输入输出
http://www.nowcoder.com/practice/58b6a69b4bf943b49d2cd3c15770b9fd
num = int(info[0])
C,math,english = list(map(float,info[1].split(",")))
print("The each subject score of No. %d is %.2f, %.2f, %.2f."
%(num,C+0.0001,math+0.0001,english+0.0001))```