[Python] Input / Output

2020. 12. 26. 18:31

BOJ16236 - 아기상어 문제 디버깅 하면서 사용

f = open("shark.txt", 'w')

# Debugging (시간마다 상어 위치와 먹은 물고기 파일에 정리)
f.write(f"[{count}] fish ({x_fish},{y_fish}), shark_size : {shark_size}\nTime : {time}\n")
for row_ind in range(N):
    row = world[row_ind]
    s = ""
    for ind, d in enumerate(row):
        if (row_ind, ind)==(x_fish,y_fish):
            s += "* "
        else:
            s += str(d) + " "
    s += "\n"
    f.write(s)
f.write("\n")

f.close()

 

'<언어> > [Python]' 카테고리의 다른 글

데코레이터 + @lru_cache 데코레이터를 활용한 DP 캐싱  (0) 2021.06.03
[Python 심화] 이터레이터와 제너레이터  (0) 2021.05.11
기타 snippet  (0) 2021.04.20
[Python] Asterisk (*) 용도  (0) 2020.09.01
[Python] String  (0) 2020.09.01

+ Recent posts