<?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: UpdateCursor sequence error in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026598#M59956</link>
    <description>&lt;P&gt;Great, thank you for that clarification. Also I didn't realize&amp;nbsp;I could mark several solutions. Great feature.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the counter, I wanted it to increase with every iteration of the highest level "for loop". It accomplishes that where it is. Thanks for all your help!&lt;/P&gt;</description>
    <pubDate>Sat, 13 Feb 2021 19:32:14 GMT</pubDate>
    <dc:creator>AdamG2</dc:creator>
    <dc:date>2021-02-13T19:32:14Z</dc:date>
    <item>
      <title>UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026570#M59942</link>
      <description>&lt;P&gt;Hey community,&lt;/P&gt;&lt;P&gt;Very infrequent poster here, so I'll try my very best to explain this with as much detail as possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to write a bespoke script tool for ArcGIS Pro (2.7) using Python (3.7).&lt;/P&gt;&lt;P&gt;I'm trying to use an UpdateCursor to update the rows of a .dbf table (outDBFTable). But when I run the script, I get the classic error "&lt;FONT color="#FF0000"&gt;TypeError: sequence size must match size of the row&lt;/FONT&gt;". But when diagnostics &lt;STRONG&gt;2&lt;/STRONG&gt; and &lt;STRONG&gt;4&lt;/STRONG&gt; run, it appears the rows do in fact have the same number of elements.&amp;nbsp;&lt;/P&gt;&lt;P&gt;outDBFTable attributes:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;OBJECTID&lt;/TD&gt;&lt;TD&gt;field1&lt;/TD&gt;&lt;TD&gt;field2&lt;/TD&gt;&lt;TD&gt;field3&lt;/TD&gt;&lt;TD&gt;field4&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;&amp;lt;Null&amp;gt;&lt;/TD&gt;&lt;TD&gt;&amp;lt;Null&amp;gt;&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&amp;lt;Null&amp;gt;&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;rasTable attributes:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;OBJECTID&lt;/TD&gt;&lt;TD&gt;Count&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;&amp;lt;number&amp;gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;...

counter2 = 0
with arcpy.da.SearchCursor(inPoly,"SHAPE@") as sCursor2:
    for sRows2 in sCursor2:
        maskExtract = arcpy.sa.ExtractByMask(reclassRas,sRows2)
        rasTable = arcpy.management.BuildRasterAttributeTable(maskExtract) 
        arcpy.AddMessage(rasTable) # diagnostics 1

        with arcpy.da.SearchCursor(rasTable,("Value","Count")) as sCursor3:
            for sRows3 in sCursor3:
                arcpy.AddMessage(sRows3) # diagnostics 2

                with arcpy.da.UpdateCursor(outDBFTable,("OBJECTID",fieldList[counter2])) as uCursor1:
                    arcpy.AddMessage(uCursor1)# diagnostic 3
                    for uRows1 in uCursor1:
                        arcpy.AddMessage(uRows1) # diagnostics 4
                        if sRows3[0] == uRows1[0]:
                            arcpy.AddMessage("true true") # diagnostics 5
                            uCursor1.updateRow([sRows3[1]]) # &amp;lt;- Error raised here
                        else:
                            arcpy.AddMessage("false false") # diagnostics 6

        counter2 =+ 1

del (sCursor2)
del (sCursor3)
del (uCursor1)

...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Every time sCursor2 performs its task and produces a new rasTable, I want to use the "Count" column &amp;lt;number&amp;gt; from rasTable to update outDBFTable fields where outDBFTable "OBJECTID" == rasTable "OBJECTID". The counter is in there to position the cursor over the correct field from fieldList (field1, field2...) every time a new rasTable is produced. Mechanically, I'm confident all of this works because if I comment out&amp;nbsp; "uCursor1.updateRow([sRows3[1]])", the printout in the ArcGIS Pro tool message dialogue box behaves just as I expect. Or based on the error, I'm overly confident...&lt;/P&gt;&lt;P&gt;Basically, I don't understand why I'm getting a sequence size error when the diagnostics show the rows to be the same size.&lt;/P&gt;&lt;P&gt;I've attached a image of the error dialogue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please let me know if more information is needed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be great!&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 16:56:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026570#M59942</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T16:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026578#M59943</link>
      <description>&lt;P&gt;If I follow it correctly, you are listing 2 fields in your update cursor, but passing only one to the updateRow. The parameter in the updateRow method needs to be the row.&amp;nbsp; If your conditional matches and then assign the field you want to update, then pass the row into the updateRow method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;for uRows1 in uCursor1:
    arcpy.AddMessage(uRows1) # diagnostics 4
    if sRows3[0] == uRows1[0]:
       uRows1[1] = sRows3[1] ???
    ...
    uCursor1.updateRow(uRows1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 17:54:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026578#M59943</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-02-13T17:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026581#M59944</link>
      <description>&lt;P&gt;counters align with the nearest 'for' not the 'while'&lt;/P&gt;&lt;P&gt;either indent or dedent your counter as appropriate&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 17:27:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026581#M59944</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-13T17:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026582#M59945</link>
      <description>&lt;P&gt;Hi JeffK,&lt;/P&gt;&lt;P&gt;Thank you very much for your comments.&lt;/P&gt;&lt;P&gt;This definitely helps me in the right direction. Assigning sRows3 to uRows1 and passing that to updateRow method is what I needed to do to fix my sequence error. However, this first, and only the first, column was updated as expected. So I suspect, along with&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600"&gt;@DanPatterson&lt;/a&gt;, that there is something wrong with my counter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it is only right to accept this response as the solution to my original question, but wanted to get&amp;nbsp;@Anonymous User's and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/215600"&gt;@DanPatterson&lt;/a&gt;'s opinion on what I should do. If my problems with the counter persist (as I suspect they might because I've just tried trouble shooting and can't seem to get it to behave) should I repost or should I continue on this thread?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:08:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026582#M59945</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T18:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026583#M59946</link>
      <description>&lt;P&gt;Hi DanPatterson,&lt;/P&gt;&lt;P&gt;Thank you for your comments.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure if you get notifications when your handle is mentioned, so I wanted to notify you about what I should do for accepting the solution. If you go check out my reply to&amp;nbsp;@Anonymous User's post, you'll see what I mean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:45:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026583#M59946</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T18:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026584#M59947</link>
      <description>&lt;P&gt;I'd start by nesting it under this for loop so when it reaches the uCursor field is incremented +1 for each iteration on sCursor3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;for sRows3 in sCursor3:
    counter2 += 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would also add the counter to some print statements or watch it in the debugger to see if it is incrementing as desired.&amp;nbsp; Not totally sure that will get you the desired output format, but its where I'd start testing.&lt;/P&gt;&lt;P&gt;edit to add you might also have to reset the counter to 0 when the iteration is complete, or move the variable assignment into a higher for loop so it auto rests to 0 on the next higher loop iteration.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:47:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026584#M59947</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-02-13T18:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026585#M59948</link>
      <description>&lt;P&gt;As Dan says, your counter is likely in the wrong indent.&amp;nbsp; imho this nested approach and passing list indices via counter is just asking for headaches and nightmares.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:34:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026585#M59948</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-02-13T18:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026587#M59949</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/167692"&gt;@DavidPike&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thank you very much for your comment.&lt;/P&gt;&lt;P&gt;I just got it to work. The indent was actually in the correct spot from the original post. I guess I was incorrectly using "=+1". I should have simply been using "counter2 = counter2 + 1". I was under the impression these functioned in the same way. But swapping them out gives me the results I'm looking for.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:45:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026587#M59949</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T18:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026588#M59950</link>
      <description>&lt;P&gt;I think its that you had =+ 1 rather than += 1 originally.&amp;nbsp; Well if it works it works.&amp;nbsp; I'm not entirely sure what it's fully doing, but I wonder if Zonal Statistics could have been an option.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:47:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026588#M59950</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2021-02-13T18:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026589#M59951</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User,&lt;/P&gt;&lt;P&gt;I got it to work now. As in my replayed to&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/167692"&gt;@DavidPike&lt;/a&gt;, I was under the impression "var&amp;nbsp; = var + 1" worked the same way as "var =+ 1".&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:48:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026589#M59951</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T18:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026590#M59952</link>
      <description>&lt;P&gt;Good to hear.&amp;nbsp; Like David said, You have the signs flipped, but if it works, it works.&amp;nbsp; - you can also accept multiple solutions.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:50:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026590#M59952</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-02-13T18:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026591#M59953</link>
      <description>&lt;P&gt;Well I guess this really shows my true experience with Python... (...pretty low). I had originally wanted to use Zonal Statistics because I thought it would be the right tool, but I wasn't able to get it to work the way I wanted.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:55:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026591#M59953</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T18:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026592#M59954</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User,&lt;/P&gt;&lt;P&gt;Yes I did get the symbols flipped. I'll go back in, change it, and do some more testing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your all of your help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 18:57:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026592#M59954</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T18:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026595#M59955</link>
      <description>&lt;P&gt;counters are always +=, -=, /=&amp;nbsp; etc with the = sign on the right.&lt;/P&gt;&lt;P&gt;c = c + 1&amp;nbsp; makes a new object&lt;/P&gt;&lt;P&gt;c += 1&amp;nbsp; changes an existing object in place&lt;/P&gt;&lt;P&gt;The reason I question the location of the counter is because "with" is a context operator and I wanted to check to see if you wanted to increate the counter within a "for" loop or after it is done.&lt;/P&gt;&lt;P&gt;As for the answers, you can check as many as you feel helped get to your solution, so all is good.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 19:21:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026595#M59955</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-02-13T19:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: UpdateCursor sequence error</title>
      <link>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026598#M59956</link>
      <description>&lt;P&gt;Great, thank you for that clarification. Also I didn't realize&amp;nbsp;I could mark several solutions. Great feature.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the counter, I wanted it to increase with every iteration of the highest level "for loop". It accomplishes that where it is. Thanks for all your help!&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 19:32:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updatecursor-sequence-error/m-p/1026598#M59956</guid>
      <dc:creator>AdamG2</dc:creator>
      <dc:date>2021-02-13T19:32:14Z</dc:date>
    </item>
  </channel>
</rss>

