remove parenthesis from print statement (closes #23396)
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 4164d49..e5ced49 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -170,7 +170,7 @@
    >>> print '"Isn\'t," she said.'
    "Isn't," she said.
    >>> s = 'First line.\nSecond line.'  # \n means newline
-   >>> s  # without print(), \n is included in the output
+   >>> s  # without print, \n is included in the output
    'First line.\nSecond line.'
    >>> print s  # with print, \n produces a new line
    First line.