Python
from collections import permutations
permutations는 오름차순 순서를 보장해주지 않음
pd.concat()
이전 dropna로 인해서 순서가 띄엄띄엄 있는 상태에서 pd.concat()의 인자로 ignore_index=True를 넣으면, 최종 df는 index가 0부터 나열된 상태가 됨
reset_index
reset_index의 인자로 drop=True를 주면 기존에 있던 index 컬럼은 없애버림
ZeroDivisionError: integer division or modulo by zero
0으로 나누려고 할 때 나는 에러