diff --git a/10-Input/Classes/Chinese_Class_2025-11-13.md b/10-Input/Classes/Chinese_Class_2025-11-13.md index e06af53..f6818ff 100644 --- a/10-Input/Classes/Chinese_Class_2025-11-13.md +++ b/10-Input/Classes/Chinese_Class_2025-11-13.md @@ -63,4 +63,6 @@ She doesn't want to chat with me Tā yǒudiǎn er yángé He's a bit strict -农村 \ No newline at end of file +农村 +nóng cūn +countryside \ No newline at end of file diff --git a/_temp_pinyin_script.py b/_temp_pinyin_script.py deleted file mode 100644 index 432a857..0000000 --- a/_temp_pinyin_script.py +++ /dev/null @@ -1,12 +0,0 @@ -from pypinyin import pinyin, Style - -# The phrase to convert -phrase = "农村" - -# Generate pinyin with tone marks -pinyin_list = pinyin(phrase, style=Style.TONE) - -# Flatten the list and join -pinyin_str = " ".join([item[0] for item in pinyin_list]) - -print(pinyin_str)