티스토리 뷰

Normal printing to the terminal means printing to "standard output"


결과가 저장될 파일명을 따로 지정해주지 않았을 경우, 결과를 터미널 창에 뿌려주도록 하는 함수는 다음과 같다.

 

def write_file(items, fn=None):
    """Write file

    items - list of string
    fn - name of output file, string (fn=None: standard output)
    """
    if fn:
        out = open(fn,'w')
    for item in items:
        if fn:
        	out.write("{}".format(item)
        else:
            print("{}".format(item))
    if fn:
        out.close()
    return None
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함