<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Delete Element from Array in Scripting</title>
    <link>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68079#M395</link>
    <description>&lt;P&gt;I use google for such questions.&lt;/P&gt;  &lt;P&gt;try this:&amp;nbsp;&lt;A href="https://www.google.com/search?q=delete+element+from+array+python" target="_blank" rel="nofollow noreferrer noopener"&gt;https://www.google.com/search?q=delete+element+from+array+python&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Jul 2020 15:35:49 GMT</pubDate>
    <dc:creator>Zdeněk_Pala</dc:creator>
    <dc:date>2020-07-02T15:35:49Z</dc:date>
    <item>
      <title>Delete Element from Array</title>
      <link>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68078#M394</link>
      <description>&lt;P&gt;Hello All, I am new in this community and I am in learning face, I want to know the&amp;nbsp;output syntax of&amp;nbsp;deleting elements from an Array in Python. I have mention the input format but i don’t know about the final output. Can anyone suggest me.&lt;BR /&gt; &amp;nbsp;&lt;/P&gt;  &lt;PRE&gt;import array as ar1  number = ar1.array('i', [11, 22, 33, 33, 44])  del number[2] # removes the third element  print(number)  del number # deletes the entire array  print(number)&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Jul 2020 12:56:15 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68078#M394</guid>
      <dc:creator>aartiyadav</dc:creator>
      <dc:date>2020-07-02T12:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Element from Array</title>
      <link>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68079#M395</link>
      <description>&lt;P&gt;I use google for such questions.&lt;/P&gt;  &lt;P&gt;try this:&amp;nbsp;&lt;A href="https://www.google.com/search?q=delete+element+from+array+python" target="_blank" rel="nofollow noreferrer noopener"&gt;https://www.google.com/search?q=delete+element+from+array+python&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 15:35:49 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68079#M395</guid>
      <dc:creator>Zdeněk_Pala</dc:creator>
      <dc:date>2020-07-02T15:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Delete Element from Array</title>
      <link>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68080#M396</link>
      <description>&lt;P&gt;Just review this code and if you want to know more about &lt;A href="https://hackr.io/blog/python-arrays" target="_blank" rel="nofollow noreferrer noopener"&gt;Python Array&lt;/A&gt;.&lt;/P&gt;  &lt;PRE&gt;&lt;CODE&gt;import array as arr&lt;BR /&gt;&lt;BR /&gt;number = arr.array('i', [1, 2, 3, 3, 4])&lt;BR /&gt;&lt;BR /&gt;del number[2]  # removing third element&lt;BR /&gt;print(number)  # Output: array('i', [1, 2, 3, 4])&lt;BR /&gt;&lt;BR /&gt;del number  # deleting entire array&lt;BR /&gt;print(number)  # Error: array is not defined&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Jul 2020 22:25:07 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/scripting/delete-element-from-array/m-p/68080#M396</guid>
      <dc:creator>rohanjoshi0894</dc:creator>
      <dc:date>2020-07-13T22:25:07Z</dc:date>
    </item>
  </channel>
</rss>

