- 0
- 이니스프리
- 조회 수 159
def print2string(*args, **kwargs): with io.StringIO() as o: print(*args, file=o, **kwargs) result = o.getvalue() return result
print 되는대로 string으로 변환하는 함수입니다 ^^
테스트해보면 리스트의 괄호 등이 그대로 문자열로 변환되는 것을 확인할 수 있습니다 :)
Seba님 포함 2명이 추천
추천인 2
작성자
댓글 0
권한이 없습니다.