Untitled
unknown
plain_text
a year ago
312 B
9
Indexable
with open("matches.txt", "r") as file:
for line in file:
parts = line.split("|")
for part in parts:
if "Matches:" in part:
matches_str = part.replace("Matches:", "").strip()
matches_int = int(matches_str)
print(matches_int)
Editor is loading...
Leave a Comment