Skip to content

Instantly share code, notes, and snippets.

View crabcrabcam's full-sized avatar

MxCraven crabcrabcam

View GitHub Profile
@crabcrabcam
crabcrabcam / sorter.py
Created June 15, 2017 10:08 — forked from anonymous/sorter.py
A really quick and dirty sorter for @robmanuel
print("Give me a path")
path = input()
file_object = open(path, "r")
keepers = []
losers = []
for line in file_object:
while True: