국어 따옴표 검사 코드
게시글 주소: https://iu.orbi.kr/00070413261
# 파일 경로
file_path = r"D:\01. 파일\6회.txt"
# 따옴표 쌍이 맞는지 검사
def check_quotes_balance(line):
single_open_quotes = line.count('‘')
single_close_quotes = line.count('’')
double_open_quotes = line.count('“')
double_close_quotes = line.count('”')
# 따옴표 쌍이 맞지 않으면 True 반환
if (single_open_quotes != single_close_quotes) or (double_open_quotes != double_close_quotes):
return True
return False
# 파일 읽기 및 조건에 맞는 줄 출력
with open(file_path, 'r', encoding='utf-8') as file:
lines = file.readlines()
for i, line in enumerate(lines, start=1):
if check_quotes_balance(line):
print(f"Line {i}: {line.strip()}")
따옴표 홀수개인거 찾아서 반환하는 코드
0 XDK (+0)
유익한 글을 읽었다면 작성자에게 XDK를 선물하세요.
-
tmi 모의 볼때 다들 나름대로 ce dc 표시하고 ->, => 이렇게 화살표...
-
지금 김승리 선생님 화요일 저녁 시대인재 수업 듣고 있는데.. 9월 모의고사...
-
기출 마스터랑 비교해서 수업 많이 어렵나요? 멘탈 다 털리고, 내가 뭘 듣고...
어디다 쓰이나요??
모고 등 문제지에 따옴표 빠진거 없나 검사합니다