From 813ad81b9fd46e203b57a24e5ef15de51b862db4 Mon Sep 17 00:00:00 2001 From: Dnomd343 Date: Wed, 14 Dec 2022 15:03:56 +0800 Subject: [PATCH] feat: add punctuation pairs --- src/punctuation/check.py | 12 ++++++++++++ src/punctuation/{character.py => statistics.py} | 0 2 files changed, 12 insertions(+) create mode 100755 src/punctuation/check.py rename src/punctuation/{character.py => statistics.py} (100%) diff --git a/src/punctuation/check.py b/src/punctuation/check.py new file mode 100755 index 0000000..e87fd38 --- /dev/null +++ b/src/punctuation/check.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + + +target = [ + ('‘', '’'), + ('“', '”'), + ('《', '》'), + ('(', ')'), +] + +print(target[0]) diff --git a/src/punctuation/character.py b/src/punctuation/statistics.py similarity index 100% rename from src/punctuation/character.py rename to src/punctuation/statistics.py