Skip to content

Commit f0af0c4

Browse files
committed
refactor: clean code
Signed-off-by: slowy07 <[email protected]>
1 parent 557a684 commit f0af0c4

File tree

388 files changed

+8353
-6251
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+8353
-6251
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
import pickle
22

3+
34
def Bdelete():
45
# Opening a file & loading it
5-
F= open("studrec.dat","rb")
6+
F = open("studrec.dat", "rb")
67
stud = pickle.load(F)
78
F.close()
8-
9+
910
print(stud)
10-
11+
1112
# Deleting the Roll no. entered by user
12-
rno= int(input("Enter the Roll no. to be deleted: "))
13-
F= open("studrec.dat","wb")
14-
rec= []
13+
rno = int(input("Enter the Roll no. to be deleted: "))
14+
F = open("studrec.dat", "wb")
15+
rec = []
1516
for i in stud:
1617
if i[0] == rno:
1718
continue
1819
rec.append(i)
19-
pickle.dump(rec,F)
20+
pickle.dump(rec, F)
2021
F.close()
21-
22+
23+
2224
Bdelete()
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
import pickle
22

3+
34
def binaryread():
4-
B=open("studrec.dat","rb")
5-
stud=pickle.load(B)
5+
B = open("studrec.dat", "rb")
6+
stud = pickle.load(B)
67
print(stud)
78

89
# prints the whole record in nested list format
910
print("contents of binary file")
1011

1112
for ch in stud:
12-
13-
print(ch) #prints one of the chosen rec in list
14-
15-
Rno=ch[0]
16-
Rname=ch[1] #due to unpacking the val not printed in list format
17-
Rmark=ch[2]
18-
19-
print(Rno, Rname,Rmark, end="\t")
20-
13+
14+
print(ch) # prints one of the chosen rec in list
15+
16+
Rno = ch[0]
17+
Rname = ch[1] # due to unpacking the val not printed in list format
18+
Rmark = ch[2]
19+
20+
print(Rno, Rname, Rmark, end="\t")
21+
2122
B.close
2223

24+
2325
binaryread()
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,33 @@
1-
#Updating records in a binary file
1+
# Updating records in a binary file
22

33
import pickle
44

5+
56
def update():
6-
F=open("class.dat",'rb+')
7-
S=pickle.load(F)
8-
found=0
9-
rno=int(input("enter the roll number you want to update"))
7+
F = open("class.dat", "rb+")
8+
S = pickle.load(F)
9+
found = 0
10+
rno = int(input("enter the roll number you want to update"))
1011
for i in S:
11-
if rno==i[0]:
12-
print("the currrent name is",i[1])
13-
i[1]=input("enter the new name")
14-
found=1
12+
if rno == i[0]:
13+
print("the currrent name is", i[1])
14+
i[1] = input("enter the new name")
15+
found = 1
1516
break
1617

17-
if found==0:
18+
if found == 0:
1819
print("Record not found")
1920

2021
else:
21-
F.seek(0)
22-
pickle.dump(S,F)
22+
F.seek(0)
23+
pickle.dump(S, F)
24+
25+
F.close()
2326

24-
F.close()
2527

2628
update()
2729

28-
F=open("class.dat","rb")
29-
val=pickle.load(F)
30+
F = open("class.dat", "rb")
31+
val = pickle.load(F)
3032
print(val)
3133
F.close()
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,31 @@
1-
#updating records in a bnary file
1+
# updating records in a bnary file
22

33
import pickle
44

5+
56
def update():
6-
F=open("studrec.dat","rb+")
7-
value=pickle.load(F)
8-
found=0
9-
roll=int(input("Enter the roll number of the record"))
7+
F = open("studrec.dat", "rb+")
8+
value = pickle.load(F)
9+
found = 0
10+
roll = int(input("Enter the roll number of the record"))
1011
for i in value:
11-
if roll==i[0]:
12+
if roll == i[0]:
1213
print("current name", i[1])
1314
print("current marks", i[2])
14-
i[1]=input("Enter the new name")
15-
i[2]=int(input("Enter the new marks"))
16-
found=1
15+
i[1] = input("Enter the new name")
16+
i[2] = int(input("Enter the new marks"))
17+
found = 1
1718

18-
if found==0:
19+
if found == 0:
1920
print("Record not found")
2021

2122
else:
22-
pickle.dump(value,F)
23+
pickle.dump(value, F)
2324
F.seek(0)
24-
newval=pickle.load(F)
25+
newval = pickle.load(F)
2526
print(newval)
26-
27+
2728
F.close()
28-
update()
2929

30-
30+
31+
update()

1 File handle/File handle binary/question 1 (elegible for remedial, top marks).py

+44-33
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22
the students of his class in a file named “class.dat”.
33
Structure of record is [roll number, name, percentage]. His computer
44
teacher has assigned the following duty to Amit
@@ -7,60 +7,71 @@
77
remedial class (student who scored less than 40 percent)
88
99
10-
'''
11-
#also find no. of children who got top marks
10+
"""
11+
# also find no. of children who got top marks
1212

1313
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]]
1614

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+
]
1726

18-
pickle.dump(list,F)
27+
28+
pickle.dump(list, F)
1929
F.close()
2030

31+
2132
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+
2637
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)
3142
F.close()
3243

44+
3345
remcount()
3446

47+
3548
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+
4154
for i in val:
42-
data=i[2]
55+
data = i[2]
4356
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")
4760

4861
F.seek(0)
4962
for i in val:
50-
if top==i[2]:
63+
if top == i[2]:
5164
print(i)
5265
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)
5769
F.close()
70+
71+
5872
firstmark()
5973

60-
F=open("class.dat","rb")
61-
val=pickle.load(F)
74+
F = open("class.dat", "rb")
75+
val = pickle.load(F)
6276
print(val)
6377
F.close()
64-
65-
66-
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1-
#binary file to search a given record
1+
# binary file to search a given record
22

33
import pickle
44

5+
56
def binary_search():
6-
F=open("studrec.dat",'rb')
7+
F = open("studrec.dat", "rb")
78
# your file path will be different
8-
value=pickle.load(F)
9-
search=0
10-
rno=int(input("Enter the roll number of the student"))
9+
value = pickle.load(F)
10+
search = 0
11+
rno = int(input("Enter the roll number of the student"))
1112

1213
for i in value:
13-
if i[0]== rno:
14+
if i[0] == rno:
1415
print("Record found successfully")
1516
print(i)
16-
search=1
17+
search = 1
1718

18-
if search==0:
19+
if search == 0:
1920
print("Sorry! record not found")
2021
F.close()
2122

22-
binary_search()
23+
24+
binary_search()
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
def longlines():
2-
F=open("story.txt","r")
3-
line=F.readlines()
2+
F = open("story.txt", "r")
3+
line = F.readlines()
44

55
for i in line:
6-
if len(i)<50:
7-
print(i,end=" ")
8-
6+
if len(i) < 50:
7+
print(i, end=" ")
8+
99
F.close()
10-
longlines()
10+
11+
12+
longlines()
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1-
#practicing with streams
1+
# practicing with streams
22
import sys
3+
34
sys.stdout.write("Enter the name of the file")
4-
file=sys.stdin.readline()
5+
file = sys.stdin.readline()
6+
7+
F = open(file.strip(), "r")
58

6-
F=open(file.strip(),"r")
7-
89
while True:
9-
ch=F.readlines()
10-
for i in ch(): #ch is the whole file,for i in ch gives lines, for j in i gives letters,for j in i.split gives words
11-
print(i,end="")
10+
ch = F.readlines()
11+
for (
12+
i
13+
) in (
14+
ch()
15+
): # ch is the whole file,for i in ch gives lines, for j in i gives letters,for j in i.split gives words
16+
print(i, end="")
1217
else:
1318
sys.stderr.write("End of file reached")
1419
break
15-
F.close()
20+
F.close()

1 File handle/File handle text/question 2.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
using read function
44
and display those words, which are less than 4 characters. """
55

6-
F=open("story.txt","r")
7-
value=F.read()
8-
lines=value.split()
9-
count=0
6+
F = open("story.txt", "r")
7+
value = F.read()
8+
lines = value.split()
9+
count = 0
1010

1111
for i in lines:
12-
if len(i)<4:
12+
if len(i) < 4:
1313
print(i)
14-
count+=1
14+
count += 1
1515
else:
1616
pass
1717

18-
print("The total number of words with length less than 4 are",count)
18+
print("The total number of words with length less than 4 are", count)

0 commit comments

Comments
 (0)