- [python](unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape 목차
반응형
python 프로그램을 하던 중에 제목과 같은 에러가 발생하였다
내가 사용한 문장은 아래와 같다
WAIT_PATH = "C:\Users\zzang\Downloads\touch_gui\realGUI\images"
이것을 해결하는 방법은 \ 대신 / 를 사용하거나
WAIT_PATH = "C:\Users\zzang\Downloads\touch_gui\realGUI\images"
또는 \ 대신 \\를 사용하면 된다
WAIT_PATH = "C:\Users\zzang\Downloads\touch_gui\realGUI\images"
를 사용하면 된다
나는 \\를 사용했다
반응형
'python & 라즈베리파이' 카테고리의 다른 글
[Tkinter]이미지를 사진뷰어가 아니라 프레임에 출력하는 방법 (0) | 2020.10.23 |
---|---|
[Tkinter]Pillow 이미지위에 텍스트 쓰기 (0) | 2020.10.16 |
[Python] 형(type) 변경 (0) | 2020.10.13 |
[Tkinter] command에서 lambda 사용 (0) | 2020.09.21 |
Canvas 상에 button 만들기 (0) | 2020.09.21 |