728x90
[(df['광고 소재 이름'][0][x], image_path[6].split('/')[-1][x], df['광고 소재 이름'][0][x]==image_path[6].split('/')[-1][x]) for x in range(len(df['광고 소재 이름'][0]))]
한쪽엔 건강메인을 '건', '강', '메', '인' 이라고 읽는데... 다른쪽에선 'ㄱ', 'ㅓ', 'ㄴ' ...이런 식으로 읽는다!!! 이럴 수가.. 어떻게 해결할까?
문제 원인은 MAC에서 한글 인식을 WINDOWS와 다르게 한다는 데에 있다.
해결 방법은 간단했다.
import unicodedata
string = '파이썬'
string = unicodedata.normalize('NFC', string)
print(string[0])
>>> 파
https://lee-seul.github.io/python/2019/04/01/max-os-korean-character-issue.html
'hacking or software engineering skills > mac' 카테고리의 다른 글
[mac os] matplotib 사용시 font 한글 폰트 깨짐 현상 해결법 (0) | 2022.07.20 |
---|---|
filezilla 오류, 치명적인 파일 전송 오류 (0) | 2021.10.02 |
[error] mac os, pycharm에러 cannot modify a read-only directory 해결법 (0) | 2021.04.12 |
[pycharm] pycharm error cannnot modify read ~ mac에서 발생하는 파이참 에러 해결법 (0) | 2021.02.11 |
[mac os] tmux와 헷갈리는 mac 터미널 명령어 정리 (0) | 2020.10.15 |