def custom_print(message_to_print, log_file='output.txt'):
print(message_to_print)
with open(log_file, 'a') as of:
of.write(message_to_print + '\n')
# Command
출력결과1
출력결과2
...
# output.txt
출력결과1
출력결과2
...
'Developing.. > Python' 카테고리의 다른 글
모델성능비교 Tip : warning제거 하는 법 (0) | 2022.07.18 |
---|---|
로그남기는 법 : Logging wrapper만들기 (0) | 2022.07.09 |
python --config ..설정값 관리하기! (0) | 2022.06.09 |
Concurrency in python +GIL (0) | 2021.02.09 |
Socket Programming w/ Multithreading (0) | 2021.02.09 |