diff options
Diffstat (limited to 'examples/greetingInKorean.py')
-rw-r--r-- | examples/greetingInKorean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/greetingInKorean.py b/examples/greetingInKorean.py index 9e881ac..00ea9bc 100644 --- a/examples/greetingInKorean.py +++ b/examples/greetingInKorean.py @@ -14,7 +14,7 @@ koreanWord = Word(koreanChars, min=2) greet = koreanWord + "," + koreanWord + "!"
# input string
-hello = '안녕, 여러분!' #"Hello, World!" in Korean
+hello = "안녕, 여러분!" # "Hello, World!" in Korean
# parse input string
print(greet.parseString(hello))
|