We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4428d87 commit 9072b68Copy full SHA for 9072b68
docs/writing/structure.rst
@@ -448,10 +448,10 @@ with calls to ``append()``.
448
nums = [str(n) for n in range(20)]
449
print "".join(nums)
450
451
-One final thing to mention about strings is that using join() is not always
+One final thing to mention about strings is that using ``join()`` is not always
452
best. In the instances where you are creating a new string from a pre-determined
453
number of strings, using the addition operator is actually faster, but in cases
454
-like above or in cases where you are adding to an existing string, using join()
+like above or in cases where you are adding to an existing string, using ``join()``
455
should be your preferred method.
456
457
.. code-block:: python
0 commit comments