본문 바로가기
Python

[Python] 파이썬 텍스트(txt) 파일 쓰기

by inspireman 2021. 7. 29.
728x90

|텍스트(txt) 파일 쓰기|


일자가 바뀔때마다 텍스트 파일 명이 바뀌고 텍스트 파일 안에 내용 추가 하기

from datetime import datetime
import time

a = '철수'
b = '철슈'

while True:
	#무한 루프 중에 조건이 만족 할때 텍스트 파일 열고 내용 쓰기 진행
	if a == b :
		#오늘 날짜가 파일명으로 txt파일 생성 ex)21-07-29.txt
		dir_file = f'{datetime.now().date()}.txt'
		try:
			with open(dir_file, 'a', encoding='UTF-8') as f: 
				f.write(f'내용을 추가\n') 
		except:
			print('파일 열기 실패')
	else:
		time.sleep(60)
		print('1분 마다 반복')
728x90
반응형

댓글