File tree 7 files changed +43
-2
lines changed
7 files changed +43
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 45
45
#game_is_on = False
46
46
#scoreboard.game_over()
47
47
scoreboard .reset ()
48
+ snake .reset ()
48
49
49
50
#Detect collision with tail
50
51
for segment in snake .segments [1 :]:
51
52
if snake .head .distance (segment ) < 10 :
52
53
#game_is_on = False
53
54
#scoreboard.game_over()
54
55
scoreboard .reset ()
56
+ snake .reset ()
55
57
56
58
57
59
screen .exitonclick ()
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ class Scoreboard(Turtle):
8
8
def __init__ (self ) -> None :
9
9
super ().__init__ ()
10
10
self .score = 0
11
- self .high_score = 0
11
+ with open ("data.txt" ) as data :
12
+ self .high_score = int (data .read ())
12
13
self .color ("white" )
13
14
self .penup ()
14
15
self .goto (0 ,270 )
@@ -17,7 +18,7 @@ def __init__(self) -> None:
17
18
18
19
def update_scoreboard (self ):
19
20
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 )
21
22
22
23
def increase_score (self ):
23
24
self .score += 1
@@ -26,6 +27,8 @@ def increase_score(self):
26
27
def reset (self ):
27
28
if self .score > self .high_score :
28
29
self .high_score = self .score
30
+ with open ("data.txt" , "w" ) as data :
31
+ data .write (f"{ self .high_score } " )
29
32
self .score = 0
30
33
self .update_scoreboard ()
31
34
Original file line number Diff line number Diff line change @@ -23,6 +23,13 @@ def add_segment(self, position):
23
23
new_segment .penup ()
24
24
new_segment .goto (position )
25
25
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 ]
26
33
27
34
def extend (self ):
28
35
self .add_segment (self .segments [- 1 ].position ())
Original file line number Diff line number Diff line change
1
+ 12
Original file line number Diff line number Diff line change
1
+ Hello, my name is Anu
You can’t perform that action at this time.
0 commit comments