Created
April 24, 2018 02:16
-
-
Save joonahn/064ef0f835c066a16882b1bf5764ca79 to your computer and use it in GitHub Desktop.
Mac에서 깨진 파일 string을 합쳐진 windows string으로 변환하는 함수
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from unicodedata import normalize | |
def nfd2nfc(data): | |
return normalize('NFC', data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment