欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python学习——输入输出的练习

程序员文章站 2024-03-23 21:10:34
...

练习题目

python学习——输入输出的练习

name = input('请输入该学生的姓名:')
score1 = int(input('语文成绩:'))
score2 = int(input('数学成绩:'))
score3 = int(input('英语成绩:'))
Total = score1 + score2 + score3
Average = Total / 3
print('%s的平均成绩为%.1f' %(name,Average))
percent = score1 / Total
print('%s的语文成绩占总成绩的%.f%%' %(name,percent * 100))

python学习——输入输出的练习