|
1 |
| -'''Amit is a monitor of class XII-A and he stored the record of all |
| 1 | +"""Amit is a monitor of class XII-A and he stored the record of all |
2 | 2 | the students of his class in a file named “class.dat”.
|
3 | 3 | Structure of record is [roll number, name, percentage]. His computer
|
4 | 4 | teacher has assigned the following duty to Amit
|
|
7 | 7 | remedial class (student who scored less than 40 percent)
|
8 | 8 |
|
9 | 9 |
|
10 |
| - ''' |
11 |
| -#also find no. of children who got top marks |
| 10 | + """ |
| 11 | +# also find no. of children who got top marks |
12 | 12 |
|
13 | 13 | import pickle
|
14 |
| -F=open("class.dat",'ab') |
15 |
| -list=[[1,"Ramya",30],[2,"vaishnavi",60],[3,"anuya",40],[4,"kamala",30],[5,"anuraag",10],[6,"Reshi",77],[7,"Biancaa.R",100],[8,"sandhya",65]] |
16 | 14 |
|
| 15 | +F = open("class.dat", "ab") |
| 16 | +list = [ |
| 17 | + [1, "Ramya", 30], |
| 18 | + [2, "vaishnavi", 60], |
| 19 | + [3, "anuya", 40], |
| 20 | + [4, "kamala", 30], |
| 21 | + [5, "anuraag", 10], |
| 22 | + [6, "Reshi", 77], |
| 23 | + [7, "Biancaa.R", 100], |
| 24 | + [8, "sandhya", 65], |
| 25 | +] |
17 | 26 |
|
18 |
| -pickle.dump(list,F) |
| 27 | + |
| 28 | +pickle.dump(list, F) |
19 | 29 | F.close()
|
20 | 30 |
|
| 31 | + |
21 | 32 | def remcount():
|
22 |
| - F=open("class.dat","rb") |
23 |
| - val=pickle.load(F) |
24 |
| - count=0 |
25 |
| - |
| 33 | + F = open("class.dat", "rb") |
| 34 | + val = pickle.load(F) |
| 35 | + count = 0 |
| 36 | + |
26 | 37 | for i in val:
|
27 |
| - if i[2]<=40: |
28 |
| - print(i,"eligible for remedial") |
29 |
| - count+=1 |
30 |
| - print("the total number of students are",count) |
| 38 | + if i[2] <= 40: |
| 39 | + print(i, "eligible for remedial") |
| 40 | + count += 1 |
| 41 | + print("the total number of students are", count) |
31 | 42 | F.close()
|
32 | 43 |
|
| 44 | + |
33 | 45 | remcount()
|
34 | 46 |
|
| 47 | + |
35 | 48 | def firstmark():
|
36 |
| - F=open("class.dat",'rb') |
37 |
| - val=pickle.load(F) |
38 |
| - main=[] |
39 |
| - count=0 |
40 |
| - |
| 49 | + F = open("class.dat", "rb") |
| 50 | + val = pickle.load(F) |
| 51 | + main = [] |
| 52 | + count = 0 |
| 53 | + |
41 | 54 | for i in val:
|
42 |
| - data=i[2] |
| 55 | + data = i[2] |
43 | 56 | main.append(data)
|
44 |
| - |
45 |
| - top=max(main) |
46 |
| - print(top,"is the first mark") |
| 57 | + |
| 58 | + top = max(main) |
| 59 | + print(top, "is the first mark") |
47 | 60 |
|
48 | 61 | F.seek(0)
|
49 | 62 | for i in val:
|
50 |
| - if top==i[2]: |
| 63 | + if top == i[2]: |
51 | 64 | print(i)
|
52 | 65 | print("congrats")
|
53 |
| - count+=1 |
54 |
| - |
55 |
| - |
56 |
| - print("the total number of students who secured top marks are",count) |
| 66 | + count += 1 |
| 67 | + |
| 68 | + print("the total number of students who secured top marks are", count) |
57 | 69 | F.close()
|
| 70 | + |
| 71 | + |
58 | 72 | firstmark()
|
59 | 73 |
|
60 |
| -F=open("class.dat","rb") |
61 |
| -val=pickle.load(F) |
| 74 | +F = open("class.dat", "rb") |
| 75 | +val = pickle.load(F) |
62 | 76 | print(val)
|
63 | 77 | F.close()
|
64 |
| - |
65 |
| - |
66 |
| - |
|
0 commit comments