diff --git a/guide/english/python/index.md b/guide/english/python/index.md
index db4f447220..e9a2d0893b 100644
--- a/guide/english/python/index.md
+++ b/guide/english/python/index.md
@@ -147,10 +147,10 @@ The built-in functions are listed in alphabetical order. The name is followed by
The `print` function in Python 3 replaces the `print` statement in Python 2.
- >>> print("Hello world!")
- Hello world!
+ >>> print("Hello, World!")
+ Hello, World!
-A function is called when the name of the function is followed by `()`. For the Hello world! example, the print function is called with a string as an argument for the first parameter. For the rest of the parameters the defaults are used.
+A function is called when the name of the function is followed by `()`. For the 'Hello, World!' example, the print function is called with a string as an argument for the first parameter. For the rest of the parameters the defaults are used.
The argument that we called the `print` function with is a `str` object or _string_, one of Python's _built-in types_.
Also the most important thing about python is that you don't have to specify the data type while declaring a variable, python's compiler