#6998: fix missing () on a print
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 8db19da..97065af 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -222,11 +222,11 @@
 ``'''``.  End of lines do not need to be escaped when using triple-quotes, but
 they will be included in the string. ::
 
-   print """
+   print("""
    Usage: thingy [OPTIONS]
         -h                        Display this usage message
         -H hostname               Hostname to connect to
-   """
+   """)
 
 produces the following output: