Skip to content

Instantly share code, notes, and snippets.

View arduinocc04's full-sized avatar

조다니엘(Daniel Cho) arduinocc04

View GitHub Profile
import os
import helper
def getHistoryOfStudent(name):
ans = []
for fileName in os.listdir('history/'):
if fileName[-3:] != 'txt': continue
tmp = helper.Seat.commasToList(None, 'history/' + fileName)
n = -1
for i in range(len(tmp)):