Skip to content

Commit 23be623

Browse files
committed
impolement file rw
1 parent 8f116b0 commit 23be623

File tree

7 files changed

+43
-2
lines changed

7 files changed

+43
-2
lines changed

024-day/.DS_Store

6 KB
Binary file not shown.

024-day/fileRW/program43.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#In this section we are learning basic file operations
2+
#Once we open the file we need to close the file. Becuase when we open a file program will asccess some resources.
3+
#So we need to free or release the resources. So we need to close the file.
4+
5+
# file = open("/my_file.txt")
6+
# content = file.read()
7+
# print(content)
8+
# file.close()
9+
10+
#We can open the file in a different way
11+
#In this we don't want to close the file
12+
with open("my_file.txt", "r") as file:
13+
content = file.read()
14+
print(content)
15+
16+
#For write some thing to a file we can use the write method
17+
#By default file open in read mode so we need to exclusively define the mode as write
18+
#Please find the example below
19+
with open("my_file.txt", "w") as file:
20+
# content = file.read()
21+
# print(content)
22+
file.write("Hello, my name is Anu")
23+
# content = file.read()
24+
# print(content)
25+
26+
#when we give 'a' mode it will append the file `r+` the we can read and write.
27+
# We only give `w`, file will overwrite

024-day/program42.py

+2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,15 @@
4545
#game_is_on = False
4646
#scoreboard.game_over()
4747
scoreboard.reset()
48+
snake.reset()
4849

4950
#Detect collision with tail
5051
for segment in snake.segments[1:]:
5152
if snake.head.distance(segment) < 10:
5253
#game_is_on = False
5354
#scoreboard.game_over()
5455
scoreboard.reset()
56+
snake.reset()
5557

5658

5759
screen.exitonclick()

024-day/scoreboard.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ class Scoreboard(Turtle):
88
def __init__(self) -> None:
99
super().__init__()
1010
self.score = 0
11-
self.high_score = 0
11+
with open("data.txt") as data:
12+
self.high_score = int(data.read())
1213
self.color("white")
1314
self.penup()
1415
self.goto(0,270)
@@ -17,7 +18,7 @@ def __init__(self) -> None:
1718

1819
def update_scoreboard(self):
1920
self.clear()
20-
self.write(f"Score:{self.score} Highh Score:{self.high_score}", align=ALIGNMENT, font=FONT)
21+
self.write(f"Score:{self.score} High Score:{self.high_score}", align=ALIGNMENT, font=FONT)
2122

2223
def increase_score(self):
2324
self.score += 1
@@ -26,6 +27,8 @@ def increase_score(self):
2627
def reset(self):
2728
if self.score > self.high_score:
2829
self.high_score = self.score
30+
with open("data.txt", "w") as data:
31+
data.write(f"{self.high_score}")
2932
self.score = 0
3033
self.update_scoreboard()
3134

024-day/snake.py

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ def add_segment(self, position):
2323
new_segment.penup()
2424
new_segment.goto(position)
2525
self.segments.append(new_segment)
26+
27+
def reset(self):
28+
for segment in self.segments:
29+
segment.goto(1000,1000)
30+
self.segments.clear()
31+
self.create_snake()
32+
self.head = self.segments[0]
2633

2734
def extend(self):
2835
self.add_segment(self.segments[-1].position())

data.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12

my_file.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Hello, my name is Anu

0 commit comments

Comments
 (0)