You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
181 B
8 lines
181 B
9 months ago
|
student_scores = [78, 65, 89, 86, 55, 91, 64, 89]
|
||
|
|
||
|
high_score = 0
|
||
|
for s in student_scores:
|
||
|
if s > high_score:
|
||
|
high_score = s
|
||
|
|
||
|
print(f"the highest score is {high_score}")
|