-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathexercise_2.py
55 lines (45 loc) · 1.56 KB
/
exercise_2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from gpa import Student
def makeStudent(infoStr):
#inforStr is a tap-separated line: name hours getQPoints
#returns a corresponding Student object
name, hours, qpoints = infoStr.split("\t")
return Student(name, hours, qpoints)
def readStudents(filename):
infile = open(filename, 'r')
students = []
for line in infile:
students.append(makeStudent(line))
infile.close()
return students
def writeStudents(students, filename):
#students is a list of Student object
outfile = open(filename, 'w')
for s in students:
print("{0}\t{1}\t{2}".format(s.getName(), s.getHours(), s.getQPoints()), file = outfile)
outfile.close()
def main():
print("This program sorts student grade information by GPA, name, or credits.")
#filename = input("Enter the name of the data file: ")
filename = 'gpa1.txt'
data = readStudents(filename)
while True:
x = (input('Type "GPA", "name", or "credits" >>> '))
if x == 'GPA':
data.sort(key=Student.gpa)
s = "_(GPA)"
break
elif x == 'name':
data.sort(key=Student.getName)
s = "_(name)"
break
elif x == 'credits':
data.sort(key=Student.getQPoints)
s = "_(credits)"
break
else:
print("Please try again.")
#filename = input("enter a name for the outputfile: ")
filename = "gpa" + s + ".py"
writeStudents(data, filename)
print("The data has been written to", filename)
if __name__ == '__main__': main()