编写一个函数print,输出一个学生的成绩数组
时间: 2023-04-26 08:04:40 浏览: 93
用数组输出学生成绩信息
好的,下面是一个简单的print函数,可以输出一个学生的成绩数组:
```
def print(scores):
for score in scores:
print(score)
```
使用方法:
```
# 定义一个学生的成绩数组
scores = [80, 90, 70, 85, 95]
# 调用print函数输出成绩数组
print(scores)
```
输出结果:
```
80
90
70
85
95
```
阅读全文