In [63]:
from os import listdir
import numpy as np
students = ['markus bludau', 'lars engellandt', 'yusuf dolu',
'mats hester', 'manuel wetzel']
tasks = [f for f in listdir('.') if f.endswith('.zip')]
np.random.seed(21) # Half the answer to the Ultimate
# Question of Life, the Universe and Everything
np.random.shuffle(tasks)
np.random.shuffle(students)
for t, s in zip(tasks, students):
print('{:17} -> {}'.format(t, s))