Skip to content

Commit 22a17cf

Browse files
committed
remove parenthesis from print statement (closes #23396)
1 parent 30375b7 commit 22a17cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/tutorial/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ and special characters::
170170
>>> print '"Isn\'t," she said.'
171171
"Isn't," she said.
172172
>>> s = 'First line.\nSecond line.' # \n means newline
173-
>>> s # without print(), \n is included in the output
173+
>>> s # without print, \n is included in the output
174174
'First line.\nSecond line.'
175175
>>> print s # with print, \n produces a new line
176176
First line.

0 commit comments

Comments
 (0)