고구마 [900828] · MS 2019 · 쪽지

2024-12-08 11:24:17
조회수 679

국어 따옴표 검사 코드

게시글 주소: https://m.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()}")



따옴표 홀수개인거 찾아서 반환하는 코드

rare-지금은 무슨메타몽? rare-아이오아이 rare-한컴오피스 한글 rare-아이즈원

0 XDK (+0)

  1. 유익한 글을 읽었다면 작성자에게 XDK를 선물하세요.