E
ela
I have a set of numbers representing student IDs and these students need
special attention to their grades.
220048 311611 519804 797736 909164
a b a c e
in fact the grade file is in a format like this:
1 a
2 a
3 c
4 b
5 a
6 b
7 ...
4000000 a
I would like to use the student IDs to obtain their corresponding grades,
stack seems to be a solution but I don't know how to combine it elegantly
with "if". Does anybody have a suggestion? Thanks.
special attention to their grades.
220048 311611 519804 797736 909164
a b a c e
in fact the grade file is in a format like this:
1 a
2 a
3 c
4 b
5 a
6 b
7 ...
4000000 a
I would like to use the student IDs to obtain their corresponding grades,
stack seems to be a solution but I don't know how to combine it elegantly
with "if". Does anybody have a suggestion? Thanks.