<?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: Updating rows with an UpdateCursor in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300978#M23326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You seem to be missing the double equal sign in the if statement again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14598649062301915" data-renderedposition="60_8_1155_16" jivemacro_uid="_14598649062301915"&gt;&lt;P&gt;if row[0] = 114:&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;should be&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14598649112398776 jive_text_macro" data-renderedposition="102_8_1155_16" jivemacro_uid="_14598649112398776"&gt;&lt;P&gt;if row[0] == 114:&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which would explain why you're getting an error at line 6.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Apr 2016 14:02:26 GMT</pubDate>
    <dc:creator>JenniferMcCall4</dc:creator>
    <dc:date>2016-04-05T14:02:26Z</dc:date>
    <item>
      <title>Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300969#M23317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to update one value of the attribute called "AREA" with the function UpdateCursor, but as I have run the script, I have received a syntax error message.&lt;BR /&gt;Could you please help me to solve this problem?&lt;IMG alt="error.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193855_error.png" style="width: 620px; height: 203px;" /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 08:53:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300969#M23317</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-05T08:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300970#M23318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks like an old coverage or something imported into a db.&lt;/P&gt;&lt;P&gt;The fields "AREA" and "PERIMITER" are system variables, so they should not be updated anyway.&lt;/P&gt;&lt;P&gt;If you look right along the attribute table do you have "SHAPE_AREA" or something like that.&lt;/P&gt;&lt;P&gt;That will contain the current area in the units of the feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 10:15:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300970#M23318</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-04-05T10:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300971#M23319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But your syntax problem is&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="_jivemacro_uid_14598514481283338 jive_macro_code jive_text_macro" data-renderedposition="34_8_1332_16" jivemacro_uid="_14598514481283338"&gt;&lt;P&gt;if row[0] = 4:&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14598514574964574 jive_text_macro" data-renderedposition="128_8_1332_16" jivemacro_uid="_14598514574964574"&gt;&lt;P&gt;if row[0] == 4:&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 10:17:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300971#M23319</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-04-05T10:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300972#M23320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately,&amp;nbsp; the same problem occurs when I try to change the value of the variable, which isn't a system ones, so this is not the case. Please have a look at the following example:&lt;BR /&gt; &lt;IMG alt="error.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193904_error.png" style="width: 620px; height: 184px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 10:28:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300972#M23320</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-05T10:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300973#M23321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The script still gives the syntax error message&lt;IMG alt="error.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193905_error.png" style="width: 620px; height: 204px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 10:38:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300973#M23321</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-05T10:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300974#M23322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your except clause is indented too far. It should be the same indentation as the try clause. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 12:29:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300974#M23322</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-04-05T12:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300975#M23323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It helps &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;BR /&gt;Thank you very much Luke. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 12:31:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300975#M23323</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-05T12:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300976#M23324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clicked submit too soon and can't edit my previous comment on the mobile GeoNet site... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The print statement after yo needs to be indented 4 spaces further than the except clause. Move the except back until it's indented the same as the try, then move the print back. Should look something like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.UpdateCursor etc...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for row etc...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc...&lt;/P&gt;&lt;P&gt;except Exception as e:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print e.message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better yet...&amp;nbsp; Remove the try/except completely so you get a proper exception traceback if something goes wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 12:44:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300976#M23324</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2016-04-05T12:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300977#M23325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Luke... and to illustrate his point with a simple example&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; print(something)
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1, in &amp;lt;module&amp;gt;
NameError: name 'something' is not defined
&amp;gt;&amp;gt;&amp;gt; print(something)
Traceback (most recent call last):
&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1, in &amp;lt;module&amp;gt;
NameError: name 'something' is not defined
&amp;gt;&amp;gt;&amp;gt; try:
...&amp;nbsp;&amp;nbsp;&amp;nbsp; print(something)
... except Exception as e:
...&amp;nbsp;&amp;nbsp;&amp;nbsp; print(e.message)
...&amp;nbsp;&amp;nbsp; 
name 'something' is not defined
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hmmmmm look kind of the same to me. &lt;/P&gt;&lt;P&gt;Learn how to interpret error messages.&amp;nbsp; You will always get something that you can't decipher easily even with try except blocks (and trackback in different versions)&lt;/P&gt;&lt;P&gt;Your code will be cleaner and indentation errors etc will be less of an issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 14:26:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300977#M23325</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-11T14:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300978#M23326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You seem to be missing the double equal sign in the if statement again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14598649062301915" data-renderedposition="60_8_1155_16" jivemacro_uid="_14598649062301915"&gt;&lt;P&gt;if row[0] = 114:&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;should be&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14598649112398776 jive_text_macro" data-renderedposition="102_8_1155_16" jivemacro_uid="_14598649112398776"&gt;&lt;P&gt;if row[0] == 114:&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which would explain why you're getting an error at line 6.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 14:02:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300978#M23326</guid>
      <dc:creator>JenniferMcCall4</dc:creator>
      <dc:date>2016-04-05T14:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300979#M23327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to update the value of a string type attribute?&lt;BR /&gt;After running the following script, there is no answer&lt;BR /&gt;Could you please help me?&lt;BR /&gt;&lt;IMG alt="error.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/193992_error.png" style="width: 620px; height: 200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 20:14:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300979#M23327</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-05T20:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300980#M23328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Malgorzata,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you run this, are you getting an error? Or is it not updating any of the rows?&lt;/P&gt;&lt;P&gt;It looks like there may be an issue with your if statement. What are you wanting to see in column [0]? The single quotes are throwing me off. Can you explain that more?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, you may want to consider adding your code to the syntax editor by going to "Use advanced editor", click on the double arrows, choose Syntax Highlighting, and choose Python.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="PythonSyntaxGeoNet.PNG" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/194000_PythonSyntaxGeoNet.PNG" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 20:45:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300980#M23328</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2016-04-05T20:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300981#M23329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;String variables accessed within a cursor like this don't need extra quotes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;if row[0] == "Obodowo" &lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 05:44:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300981#M23329</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2016-04-06T05:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300982#M23330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have also tried to use such a line of code previously, but it doesn't help.&lt;BR /&gt;There is still no result and no error message.&lt;BR /&gt;Have you got maybe other ideas?&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:08:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300982#M23330</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-06T06:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300983#M23331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to change the value of the attribute "AREA" if the value of the attribute "NAZ" is "Obodowo"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:09:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300983#M23331</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-06T06:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300984#M23332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if row[1] = "Obodowo":&amp;nbsp;&amp;nbsp;&amp;nbsp; # row[1] is Naz ???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; row[2] = 170 # since row[2] is Area&lt;/P&gt;&lt;P&gt;but if area is a text field then use "170"&lt;/P&gt;&lt;P&gt;You might want to write out what for the data currently are in and what you want it to look like&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:19:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300984#M23332</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-04-06T06:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300985#M23333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not put this into a script, instead of typing it out each time.&lt;/P&gt;&lt;P&gt;Just open IDLE or whatever you are using, open a new file, put the code there, and save.&lt;/P&gt;&lt;P&gt;You can run it within the interpreter.&lt;/P&gt;&lt;P&gt;Then post the entire code here using the python syntax highlighter.&lt;/P&gt;&lt;P&gt;Perhaps a piece of data as well.&lt;/P&gt;&lt;P&gt;Does that workspace exist? Can the script see it? Its has spaces in the path which is generally a bad thing, but I don't think that is the issue here.&lt;/P&gt;&lt;P&gt;Do you have write permissions in that workspace?&lt;/P&gt;&lt;P&gt;And, what is that workspace anyway? A folder? A fgdb (doesn't look like it)?&lt;/P&gt;&lt;P&gt;If this is a coverage (still), you will not be able to overwrite a system variable like that. And, not sure if Update cursors would work anyway.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:21:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300985#M23333</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-04-06T06:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300986#M23334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have put the code into IDLE and check the module. It has turned out that there should be "miasta0_kujpom.shp" instead of "miasta0_kujpom"&lt;BR /&gt;Thank you for your suggestions. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 06:46:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300986#M23334</guid>
      <dc:creator>MalgorzataMendela</dc:creator>
      <dc:date>2016-04-06T06:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Updating rows with an UpdateCursor</title>
      <link>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300987#M23335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kindly mark this post as answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 11:49:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/updating-rows-with-an-updatecursor/m-p/300987#M23335</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-04-06T11:49:09Z</dc:date>
    </item>
  </channel>
</rss>

