<?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: Python code ERROR 000670 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618912#M48265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Firstly, take the quotes out of the &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append&lt;/SPAN&gt;&lt;SPAN&gt; lines. For example, change &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append("zabudowa_clip_bufor")&lt;/SPAN&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append(zabudowa_clip_bufor)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to merge all the feature classes in &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista&lt;/SPAN&gt;&lt;SPAN&gt;, use the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000055000000" rel="nofollow noopener noreferrer" target="_blank"&gt;merge&lt;/A&gt;&lt;SPAN&gt; tool. Like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.Merge_management(lista,r"C:\Path\To\MergedOutput.shp")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to remove some of the shapefiles that you used throughout the script, then use the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000036000000" rel="nofollow noopener noreferrer" target="_blank"&gt;Delete Features&lt;/A&gt;&lt;SPAN&gt; tool, like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.DeleteFeatures_management(zabudowa_clip)
arcpy.DeleteFeatures_management(zabudowa_clip_bufor)
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 02:26:22 GMT</pubDate>
    <dc:creator>JoshuaChisholm</dc:creator>
    <dc:date>2021-12-12T02:26:22Z</dc:date>
    <item>
      <title>Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618909#M48262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm learning to write scripts and I have now some problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.env.workspace = "c:/wtyczka/"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.env.overwriteOutput = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outWorkspace = "c:/wtyczka/"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#dane&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Wybor_gminy = "'Wyszków'"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_zabudowy = arcpy.GetParameterAsText(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_zabudowy = arcpy.GetParameterAsText(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_sieci_drog = arcpy.GetParameterAsText(2)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_sieci_drog = arcpy.GetParameterAsText(3)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_sieci_kolejowej = arcpy.GetParameterAsText(4)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_sieci_kolejowej = arcpy.GetParameterAsText(5)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_inna = arcpy.GetParameterAsText(6)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_inna = arcpy.GetParameterAsText(7)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_inna_1 = arcpy.GetParameterAsText(8)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_inna_1 = arcpy.GetParameterAsText(9)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gminy = "c:/wtyczka/gminy_92.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gmina = "c:/wtyczka/gmina.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;selekcja = '"GMINA"'+ " = " + "'Wyszków'"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;lista = []&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Local variables:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;zabudowa_clip = Warstwa_zabudowy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;zabudowa_clip_bufor = zabudowa_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drogi_clip = Warstwa_sieci_drog&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drogi_clip_bufor = drogi_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;kolej_clip = Warstwa_sieci_kolejowej&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;kolej_clip_bufor = kolej_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna_clip = Warstwa_inna&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna_clip_bufor = inna_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna1_clip = Warstwa_inna_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna1_clip_bufor = inna_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#selekcja&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.Select_analysis(gminy, gmina, '"GMINA" = \'Wyszków\'')&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Clip zabudowa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(Warstwa_zabudowy):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;STRONG&gt;arcpy.Clip_analysis(Warstwa_zabudowy, gmina, zabudowa_clip, "0")&lt;/STRONG&gt;&lt;SPAN&gt; - line 41&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I'm trying run this stript in ArcMap is an ERROR 000670: output Output Feature Class is same as input Input Features&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (Clip).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know why because input and out put Features has other names.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 11:17:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618909#M48262</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-12T11:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618910#M48263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Cezary,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Both &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;Warstwa_zabudowy&lt;/SPAN&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;zabudowa_clip&lt;/SPAN&gt;&lt;SPAN&gt; point to the same feature class. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Input feature class (&lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;Warstwa_zabudowy&lt;/SPAN&gt;&lt;SPAN&gt;) and output feature class (&lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;zabudowa_clip&lt;/SPAN&gt;&lt;SPAN&gt;) must be &lt;/SPAN&gt;&lt;STRONG&gt;different&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 12:31:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618910#M48263</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-05-12T12:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618911#M48264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ok, but i don't want to create next shp.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;what can i do?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to create tools which will have optional input data (5xshp)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and if any of this data will be exists do clip by layer form arcpy.Select_analysis, later diferent bufor for each layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In the end I want to Merge all this layer after buffor&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what I wrote to now:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcpy&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.env.workspace = "c:/wtyczka/"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.env.overwriteOutput = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;outWorkspace = "c:/wtyczka/"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#dane&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Wybor_gminy = "'Wyszków'"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_zabudowy = arcpy.GetParameterAsText(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_zabudowy = arcpy.GetParameterAsText(1)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_sieci_drog = arcpy.GetParameterAsText(2)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_sieci_drog = arcpy.GetParameterAsText(3)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_sieci_kolejowej = arcpy.GetParameterAsText(4)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_sieci_kolejowej = arcpy.GetParameterAsText(5)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_inna = arcpy.GetParameterAsText(6)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_inna = arcpy.GetParameterAsText(7)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Warstwa_inna_1 = arcpy.GetParameterAsText(8)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bufor_od_inna_1 = arcpy.GetParameterAsText(9)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gminy = "c:/wtyczka/gminy_92.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gmina = "c:/wtyczka/gmina.shp"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;selekcja = " \"GMINA\" = 'Wyszków' "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;lista = []&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Local variables:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;zabudowa_clip = Warstwa_zabudowy&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;zabudowa_clip_bufor = zabudowa_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drogi_clip = Warstwa_sieci_drog&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;drogi_clip_bufor = drogi_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;kolej_clip = Warstwa_sieci_kolejowej&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;kolej_clip_bufor = kolej_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna_clip = Warstwa_inna&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna_clip_bufor = inna_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna1_clip = Warstwa_inna_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;inna1_clip_bufor = inna_clip&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#selekcja&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;arcpy.Select_analysis(gminy, gmina, selekcja)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Clip zabudowa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(Warstwa_zabudowy):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Clip_analysis(Warstwa_zabudowy, gmina, zabudowa_clip, "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Buffer zabudowa&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(zabudowa_clip):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Buffer_analysis(zabudowa_clip, zabudowa_clip_bufor, Bufor_od_zabudowy, "FULL", "ROUND", "ALL", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; lista.append("zabudowa_clip_bufor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Clip drogi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(Warstwa_sieci_drog):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Clip_analysis(Warstwa_sieci_drog, gmina, drogi_clip, "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Buffer drogi&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(drogi_clip):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Buffer_analysis(drogi_clip, drogi_clip_bufor, Bufor_od_drog, "FULL", "ROUND", "ALL", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; lista.append("drogi_clip_bufor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Clip kolej&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(Warstwa_sieci_kolejowej):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Clip_analysis(Warstwa_sieci_kolejowej, gmina, kolej_clip, "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Buffer kolej&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(kolej_clip):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Buffer_analysis(kolej_clip, kolej_clip_bufor, Bufor_od_sieci_kolejowej, "FULL", "ROUND", "ALL", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; lista.append("kolej_clip_bufor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Clip inna&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(Warstwa_inna):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Clip_analysis(Warstwa_inna, gmina, inna_clip, "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Buffer inna&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(inna_clip):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Buffer_analysis(inna_clip, inna_clip_bufor, Bufor_od_inna, "FULL", "ROUND", "ALL", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; lista.append("inna1_clip_bufor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Clip inna 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(Warstwa_inna_1):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Clip_analysis(Warstwa_inna_1, gmina, inna1_clip, "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: Buffer inna 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.Exists(inna1_clip):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; arcpy.Buffer_analysis(inna1_clip, inna1_clip_bufor, Bufor_od_inna_1, "FULL", "ROUND", "ALL", "")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; lista.append("inna1_clip_bufor")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "false"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;print lista&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't how to merg each element in list "lista"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 12:44:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618911#M48264</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-12T12:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618912#M48265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Firstly, take the quotes out of the &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append&lt;/SPAN&gt;&lt;SPAN&gt; lines. For example, change &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append("zabudowa_clip_bufor")&lt;/SPAN&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append(zabudowa_clip_bufor)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to merge all the feature classes in &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista&lt;/SPAN&gt;&lt;SPAN&gt;, use the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000055000000" rel="nofollow noopener noreferrer" target="_blank"&gt;merge&lt;/A&gt;&lt;SPAN&gt; tool. Like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.Merge_management(lista,r"C:\Path\To\MergedOutput.shp")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to remove some of the shapefiles that you used throughout the script, then use the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//001700000036000000" rel="nofollow noopener noreferrer" target="_blank"&gt;Delete Features&lt;/A&gt;&lt;SPAN&gt; tool, like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.DeleteFeatures_management(zabudowa_clip)
arcpy.DeleteFeatures_management(zabudowa_clip_bufor)
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:26:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618912#M48265</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2021-12-12T02:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618913#M48266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for help. It works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But now I have problem with SQL Expression, besause I want choose a region to analyze and select appropriate polygons.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33770[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The best will be if user will write only the name of region (which is in Field in gminy_92.shp) or choose from list in SQL Expression.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to everyone be able to use this tool. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for my English.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wrote this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Wybor_gminy = arcpy.GetParameterAsText(0)&lt;BR /&gt;Warstwa_zabudowy = arcpy.GetParameterAsText(1)&lt;BR /&gt;Bufor_od_zabudowy = arcpy.GetParameterAsText(2)&lt;BR /&gt;Warstwa_sieci_drog = arcpy.GetParameterAsText(3)&lt;BR /&gt;Bufor_od_sieci_drog = arcpy.GetParameterAsText(4)&lt;BR /&gt;Warstwa_sieci_kolejowej = arcpy.GetParameterAsText(5)&lt;BR /&gt;Bufor_od_sieci_kolejowej = arcpy.GetParameterAsText(6)&lt;BR /&gt;Warstwa_inna = arcpy.GetParameterAsText(7)&lt;BR /&gt;Bufor_od_inna = arcpy.GetParameterAsText(8)&lt;BR /&gt;Warstwa_inna_1 = arcpy.GetParameterAsText(9)&lt;BR /&gt;Bufor_od_inna_1 = arcpy.GetParameterAsText(10)&lt;BR /&gt;gminy = "c:/wtyczka/gminy_92.shp"&lt;BR /&gt;selekcja = "\"GMINA\""+ "=" + "'" + Wybor_gminy + "'"&lt;BR /&gt;gmina = "c:/wtyczka/gmina.shp"&lt;BR /&gt;lista = []&lt;BR /&gt;&lt;BR /&gt;# Local variables:&lt;BR /&gt;zabudowa_clip = "c:/wtyczka/zabudowa_clip.shp"&lt;BR /&gt;zabudowa_clip_bufor = "c:/wtyczka/zabudowa_clip_bufor.shp"&lt;BR /&gt;drogi_clip = "c:/wtyczka/drogi_clip.shp"&lt;BR /&gt;drogi_clip_bufor = "c:/wtyczka/drogi_clip_bufor.shp"&lt;BR /&gt;kolej_clip = "c:/wtyczka/kolej_clip.shp"&lt;BR /&gt;kolej_clip_bufor = "c:/wtyczka/gminy_92.shp"&lt;BR /&gt;inna_clip = "c:/wtyczka/inna_clip.shp"&lt;BR /&gt;inna_clip_bufor = "c:/wtyczka/inna_clip_bufor.shp"&lt;BR /&gt;inna1_clip = "c:/wtyczka/inna1_clip.shp"&lt;BR /&gt;inna1_clip_bufor = "c:/wtyczka/inna1_clip_bufor.shp"&lt;BR /&gt;&lt;BR /&gt;#selekcja&lt;BR /&gt;arcpy.Select_analysis(gminy, gmina, selekcja)&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In ArcGis I typed for Wybor gminy Wyszków and when I run script I have "ERROR 000358: Invalid expression "GMINA"='Wyszków'"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I corect this error?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 06:49:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618913#M48266</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-13T06:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618914#M48267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;"GMINA"='Wyszków'&lt;/SPAN&gt;&lt;SPAN&gt; looks like a valid expression to me. I'd make sure that there is a field called &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;GMINA&lt;/SPAN&gt;&lt;SPAN&gt; in &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;gminy&lt;/SPAN&gt;&lt;SPAN&gt; (gminy_92.shp).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want the user to type in part of the SQL statement instead of building an SQL, then just set it up as a "String" (text) input parameter, and put that input into the SQL statement. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]*Note: If you use this method, the user must enter the &lt;/SPAN&gt;&lt;STRONG&gt;exact&lt;/STRONG&gt;&lt;SPAN&gt; same string that exists in the attribute table. For example, if the user enters 'Wyszków ' or 'Wyszkow' your tool will not work properly. As far as I know, there is no easy way to set up a drop-down for all possible field values. It would involve making a custom form using the Tkinter module. I would highly recommend avoiding this if possible. [/INDENT] &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want the user to build an SQL Statement (like the screenshot you attached), you should change the line &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;selekcja = "\"GMINA\""+ "=" + "'" + Wybor_gminy + "'"&lt;/SPAN&gt;&lt;SPAN&gt; to &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;selekcja = Wybor_gminy&lt;/SPAN&gt;&lt;SPAN&gt;. That might be why you're getting an error.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:20:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618914#M48267</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-05-13T13:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618915#M48268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Both methods are not working &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm sending you the whole script and the screens:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;These are the settings for method with part of the SQL statement (file aaaaaaa.py)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33798[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;These are the settings for build an SQL Statement (file bbbbbb.py)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33799[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In shp is field GMINA.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2014 07:00:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618915#M48268</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-14T07:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618916#M48269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Method "aaaaaaaaaa.py�??":&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]It looks like it should be working. What error are you getting? What line is the error occurring?[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Method "bbbbbbbbb.py�??":&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]Normally you can make the SQL Statement easier on the user by setting a source for the SQL (as done &lt;/SPAN&gt;&lt;A href="http://gis.stackexchange.com/questions/58591/how-to-populate-sql-options-for-parameter-in-arcgis-10-tool"&gt;here&lt;/A&gt;&lt;SPAN&gt;). Unfortunately, this will not work for you because &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;gminy&lt;/SPAN&gt;&lt;SPAN&gt; is not an input from the user.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;&lt;STRONG&gt;selekcja = '"' + kolumna + '"'+ " = " + "'" + Wybor_gminy + "'"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt; should be changed to &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;&lt;STRONG&gt;selekcja = Wybor_gminy&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;.[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think method "aaaaaaaaaa.py�??" would be better in your case.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2014 17:55:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618916#M48269</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-05-14T17:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618917#M48270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&lt;BLOCKQUOTE&gt;hua17;388646 wrote:&lt;BR /&gt;Method "aaaaaaaaaa.py�??":&lt;/BLOCKQUOTE&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]It looks like it should be working. What error are you getting? What line is the error occurring?[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the screen of error&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33832[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 06:30:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618917#M48270</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-15T06:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618918#M48271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That seems really strange. It looks like a good SQL Expression to me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you please try running that exact expression to the attribute table for &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;c:/wtyczka/gminy_92.shp&lt;/SPAN&gt;&lt;SPAN&gt;. Let me know if you get an error and if the expression actually selects records in the table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are using a Geodatabase ('.gdb') you would need to use square brackets[] instead or double quotes"". Like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;selekcja = '[GMINA] = ' + "'" + Wybor_gminy + "'"&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;This shouldn't be the issue since you are using a shapefile, but you could try it just in case.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 16:14:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618918#M48271</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-05-15T16:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618919#M48272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It's strange for me too. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I changed the worspace for personal geodatabase and script was running but ArcGIS get frozen at some moment. Was created only &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;zabudowa_clip, zabudowa_clip_bufor, drogi_clip, drogi_clip_bufor and obviously gmina. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know what to do with this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2014 07:45:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618919#M48272</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-21T07:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618920#M48273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I wrote this script - zzzzz.py &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But when I'm running it every process is false.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33959[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2014 07:55:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618920#M48273</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-21T07:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618921#M48274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I wrote this script - zzzzz.py&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But I have this problems:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33960[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2014 09:08:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618921#M48274</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-05-21T09:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618922#M48275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can spot two possible problems:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;I'm not sure if this is an error or not. &lt;PRE class="lia-code-sample line-numbers language-none"&gt;kolej_clip_bufor = "c:/wtyczka/New Personal Geodatabase.mdb/gminy_92"&lt;/PRE&gt;&lt;/LI&gt;&lt;BR /&gt;#Change to:&lt;BR /&gt;kolej_clip_bufor = "c:/wtyczka/New Personal Geodatabase.mdb/kolej_clip_bufor"&lt;BR /&gt;&lt;LI&gt;You should be using the variable names, not strings in quotes.&lt;/LI&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;lista.append("zabudowa_clip_bufor")
#Change to:
lista.append(zabudowa_clip_bufor)&lt;/PRE&gt;&lt;BR /&gt;Do this for &lt;SPAN style="font-style:italic;"&gt;ALL&lt;/SPAN&gt; &lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;lista.append&lt;/SPAN&gt; lines.&lt;BR /&gt;&lt;/OL&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if that fixes it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:26:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618922#M48275</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2021-12-12T02:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python code ERROR 000670</title>
      <link>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618923#M48276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sorry I was sailing 2 weeks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I still have the same problem with this script &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2014 10:41:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-code-error-000670/m-p/618923#M48276</guid>
      <dc:creator>CezaryGorczynski</dc:creator>
      <dc:date>2014-06-06T10:41:14Z</dc:date>
    </item>
  </channel>
</rss>

