Skip to content

Commit 349a199

Browse files
committed
Array
1 parent 152715f commit 349a199

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@ Array
19351935

19361936
```python
19371937
from array import array
1938-
<array> = array('<typecode>', <collection>) # Array from collection of numbers.
1938+
<array> = array('<typecode>', <collection>) # Array from coll. of numbers.
19391939
<array> = array('<typecode>', <bytes>) # Array from bytes object.
19401940
<bytes> = <array>.tobytes()
19411941
```

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@
17181718

17191719

17201720
<div><h2 id="array"><a href="#array" name="array">#</a>Array</h2><p><strong>List that can only hold numbers of a predefined type. Available types and their sizes in bytes are listed above.</strong></p><pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> array <span class="hljs-keyword">import</span> array
1721-
&lt;array&gt; = array(<span class="hljs-string">'&lt;typecode&gt;'</span>, &lt;collection&gt;) <span class="hljs-comment"># Array from collection of numbers.</span>
1721+
&lt;array&gt; = array(<span class="hljs-string">'&lt;typecode&gt;'</span>, &lt;collection&gt;) <span class="hljs-comment"># Array from coll. of numbers.</span>
17221722
&lt;array&gt; = array(<span class="hljs-string">'&lt;typecode&gt;'</span>, &lt;bytes&gt;) <span class="hljs-comment"># Array from bytes object.</span>
17231723
&lt;bytes&gt; = &lt;array&gt;.tobytes()
17241724
</code></pre></div>

0 commit comments

Comments
 (0)