Skip to content

Commit 4d92bec

Browse files
authored
Update GradeTracker.py
1 parent 8ff8a86 commit 4d92bec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

1 gradetracker/GradeTracker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import statistics as s
88

99
#add constants next
10-
admins = {'Faculty1':'ABC123','Faculty2':'ABC123'}
10+
admins = {'Kyle':'Bender','Faculty2':'ABC123'}
1111

1212
#Like the admins above is a dictionary but of students. Dictionaries use curly brackets with colons to associate keys with values. In this case, each student's first name is a key. The values are lists of grades.
1313
#Lists are denoted with square brackets. Values are indexed within starting with 0 for the first one. Each value is separated by commas.
@@ -84,4 +84,4 @@ def main():
8484
else:
8585
print('Invalid password.')
8686
else:
87-
print('Invalid user.')
87+
print('Invalid user.')

0 commit comments

Comments
 (0)