Skip to content

Commit 4ff6be7

Browse files
committed
Removed errant backslashes
1 parent ca9894e commit 4ff6be7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Python_for_Data_Science_all.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2679,7 +2679,7 @@ <h3 id="Identifiers,-strings,-lists-and-tuples">Identifiers, strings, lists and
26792679
</div>
26802680
<div class="inner_cell">
26812681
<div class="text_cell_render border-box-sizing rendered_html">
2682-
<p>The <a href="http://docs.python.org/2/library/stdtypes.html#str.strip"><strong><code>str.strip(\[chars\]</code></strong>)</a> method returns a copy of <code>str</code> in which any leading or trailing <code>chars</code> are removed. If no <code>chars</code> are specified, it removes all leading and trailing whitespace. [<em>Whitespace</em> is any sequence of spaces, tabs (<code>'\t'</code>) and/or newline (<code>'\n'</code>) characters.]</p>
2682+
<p>The <a href="http://docs.python.org/2/library/stdtypes.html#str.strip"><strong><code>str.strip([chars]</code></strong>)</a> method returns a copy of <code>str</code> in which any leading or trailing <code>chars</code> are removed. If no <code>chars</code> are specified, it removes all leading and trailing whitespace. [<em>Whitespace</em> is any sequence of spaces, tabs (<code>'\t'</code>) and/or newline (<code>'\n'</code>) characters.]</p>
26832683
<p>Note that since a blank space is inserted in the output after every item in a comma-delimited list, the last asterisk is printed after a leading blank space is inserted on the new line.</p>
26842684
</div>
26852685
</div>

Python_for_Data_Science_all.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:e4e44d764641165b5be7b5e9e173657c21423c423f68e3f034e2dd22505466ed"
4+
"signature": "sha256:bcca0950b7dac5cf922034044015c39bca27062f58925c71f26294b7f0bfd371"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -799,7 +799,7 @@
799799
"cell_type": "markdown",
800800
"metadata": {},
801801
"source": [
802-
"The [**`str.strip(\\[chars\\]`**)](http://docs.python.org/2/library/stdtypes.html#str.strip) method returns a copy of `str` in which any leading or trailing `chars` are removed. If no `chars` are specified, it removes all leading and trailing whitespace. [*Whitespace* is any sequence of spaces, tabs (`'\\t'`) and/or newline (`'\\n'`) characters.] \n",
802+
"The [**`str.strip([chars]`**)](http://docs.python.org/2/library/stdtypes.html#str.strip) method returns a copy of `str` in which any leading or trailing `chars` are removed. If no `chars` are specified, it removes all leading and trailing whitespace. [*Whitespace* is any sequence of spaces, tabs (`'\\t'`) and/or newline (`'\\n'`) characters.] \n",
803803
"\n",
804804
"Note that since a blank space is inserted in the output after every item in a comma-delimited list, the last asterisk is printed after a leading blank space is inserted on the new line."
805805
]

0 commit comments

Comments
 (0)