diff options
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ Here is a program to parse "Hello, World!" (or any greeting of the form from pyparsing import Word, alphas
greet = Word( alphas ) + "," + Word( alphas ) + "!"
hello = "Hello, World!"
-print hello, "->", greet.parseString( hello )
+print(hello, "->", greet.parseString( hello ))
```
The program outputs the following:
|