티스토리 뷰
시간 데이타 파일
더보기
22 25 0
5 30 195
17 40 200
17 15 210
0 40 -50
8 40 -200
22 10 -50
2 15 910
23 20 100
10 50 -20
8 40 200
결과
더보기
22:25
8:45
21:0
20:45
23:50
5:20
21:20
17:25
1:0
10:30
12:0
def read_file(path):
with open(path, "r") as f:
return f.readlines()
def write_file(path, lines):
with open(path, "w") as f:
f.writelines(lines)
def lines_to_rows(lines):
rows = list(map(lambda x: x.replace("\n", "").split(" "), lines))
for i, row in enumerate(rows):
rows[i] = list(map(int, rows[i]))
return rows
def row_to_time(row):
hours, mins = row[0], row[1]+row[2]
final_hours = mins // 60 + hours
final_mins = mins % 60
if final_hours > 24:
final_hours -= 24
if final_hours < 0:
final_hours += 24
return final_hours, final_mins
def convert(rows):
times = []
for i, row in enumerate(rows):
time = row_to_time(row)
times.append(f"{i+1}: time={time[0]}:{time[1]}")
return "\n".join(times)
lines = read_file("data.txt")
rows = lines_to_rows(lines)
times = convert(rows)
write_file("reuslt.txt", times)
'python lecture > project' 카테고리의 다른 글
[python] 지하철 승하차 기록 조회 (0) | 2020.06.07 |
---|---|
[python] n 진수 바꾸기 (0) | 2020.06.03 |
[python] 스테가노그래피 (0) | 2020.05.25 |
[python] 남/여 균일 매칭 (0) | 2020.05.25 |
[python] # 연산 하기 (0) | 2020.05.11 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- GIT
- 엑셀 비교
- 이미지 비교
- 면접정답
- 파이썬 강좌
- wsgi
- chatbot
- admin.py
- 파이썬
- pycrypto
- 장고
- 문과 코딩
- gitignore
- Tistory
- 장고 플러스친구 자동응답
- 파이썬 입문
- django
- 모바일 테마 적용
- 문서 비교
- gitlab
- 장고 카톡 자동응답
- django chatbot
- 파이썬 프로그래밍
- 파이썬 독학
- 모바일 스킨 적용
- 면접답변
- virtualenv
- Python
- PuTTYGen
- 플러스친구 자동응답
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함