Skip to content

Commit 22060a7

Browse files
committed
String
1 parent 339eb47 commit 22060a7

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,6 @@ String
323323
```python
324324
<str> = <str>.replace(old, new [, count]) # Replaces 'old' with 'new' at most 'count' times.
325325
<str> = <str>.translate(<table>) # Use `str.maketrans(<dict>)` to generate table.
326-
<list> = textwrap.wrap(<str>, width) # Nicely breaks string into lines.
327326
```
328327

329328
```python

index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,6 @@
434434
</code></pre>
435435
<pre><code class="python language-python hljs">&lt;str&gt; = &lt;str&gt;.replace(old, new [, count]) <span class="hljs-comment"># Replaces 'old' with 'new' at most 'count' times.</span>
436436
&lt;str&gt; = &lt;str&gt;.translate(&lt;table&gt;) <span class="hljs-comment"># Use `str.maketrans(&lt;dict&gt;)` to generate table.</span>
437-
&lt;list&gt; = textwrap.wrap(&lt;str&gt;, width) <span class="hljs-comment"># Nicely breaks string into lines.</span>
438437
</code></pre>
439438
<pre><code class="python language-python hljs">&lt;str&gt; = chr(&lt;int&gt;) <span class="hljs-comment"># Converts int to unicode char.</span>
440439
&lt;int&gt; = ord(&lt;str&gt;) <span class="hljs-comment"># Converts unicode char to int.</span>

0 commit comments

Comments
 (0)