-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Reading scores.
with open('saves.txt', 'rw')
as f:
lines = f.readlines()
for line in lines:
line = line.strip()
if not line:
continue
points, name = line.split()Writing scores.
with open('saves.txt', 'rw') as f:
f.writeline(str(points) + ' ' + str(name))Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels