- 0
- 이니스프리
- 조회 수 275
from tabulate import tabulate table = tabulate(data) with open('table_result.txt', 'w', encoding='utf-8') as f: f.write(table)
위와 같이 인코딩을 'utf-8'로 변경하면 해결되는 경우도 있습니다.
저도 그랬고 Stackoverflow를 보니 다른 유저분들도 그런 것 같네요 ^^
참조 : https://stackoverflow.com/questions/65661704/python-tabulate-not-writing-to-text-file-correctly
작성자
댓글 0
권한이 없습니다.