Skip to content

Commit 0be3a50

Browse files
committed
Add new file
1 parent 11e746a commit 0be3a50

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

print_grades.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
grades = [100, 100, 90, 40, 80, 100, 85, 70, 90, 65, 90, 85, 50.5]
2+
3+
def print_grades(grades_input):
4+
for i in grades_input:
5+
print '\n', i
6+
7+
8+
print_grades(grades)

0 commit comments

Comments
 (0)