<?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 - How to customise result in geoprocessing dialog window in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21185#M1612</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not sure that is what he wants...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; for i in projectResult:
...&amp;nbsp; i.replace("C:\\GIS_Result\\","")
...
'abc.shp'
'1234.shp'
'zyx.shp'
&amp;gt;&amp;gt;&amp;gt; projectResult
['C:\\GIS_Result\\abc.shp', 'C:\\GIS_Result\\1234.shp', 'C:\\GIS_Result\\zyx.shp']
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it doesn't seem to change the list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and with this, I get an error message since projectResult is a list&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; projectResult.replace("C:\GIS_Result\","")
Traceback (&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; projectResult.replace("C:\GIS_Result\","")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^
SyntaxError: EOL while scanning string literal
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 20:51:42 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2021-12-10T20:51:42Z</dc:date>
    <item>
      <title>Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21182#M1609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is my python script code in ArcGIS 10.3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="pln"&gt;projectResult &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; arcpy&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="typ"&gt;Project_management&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;fc&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; outFolder &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;+&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; &lt;/SPAN&gt;&lt;SPAN class="str"&gt;"\\"&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;+&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; fc&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;,&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; template&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; 
&lt;/SPAN&gt;&lt;SPAN class="com"&gt;&lt;SPAN style="color: #e23d39;"&gt;# Name of shapefiles re-projected in result dialog window&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="pln"&gt; 
arcpy&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="typ"&gt;AddMessage&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;projectResult&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)

&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Which gives me this in the geoprocessing dialog result box;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="pln"&gt;C&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;\GIS_Result\abc&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;shp 
C&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;\GIS_Result\1&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;234.shp&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; 
C&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;\GIS_Result\zyx&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;shp 
C&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;\GIS_Result\9&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;87.shp

&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Can I remove the filepath to give me just the filename?;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abc.shp&lt;BR /&gt;1234.shp&lt;BR /&gt; zyx.shp&lt;BR /&gt; 987.shp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:51:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21182#M1609</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2021-12-10T20:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21183#M1610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;/PRE&gt;&lt;P&gt;try a variant of this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; projectResult = [r'C:\GIS_Result\abc.shp',r'C:\GIS_Result\1234.shp',r'C:\GIS_Result\zyx.shp']
&amp;gt;&amp;gt;&amp;gt; msg = [out.split('\\')[-1] for out in projectResult]
&amp;gt;&amp;gt;&amp;gt; msg
['abc.shp', '1234.shp', 'zyx.shp']
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:51:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21183#M1610</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-10T20:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21184#M1611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using:&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="typ" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;AddMessage&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;fc&lt;/SPAN&gt;&lt;/CODE&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;or &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="typ" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;AddMessage&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;projectResult.replace("&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;C&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;\GIS_Result\",""&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I am not python expert. Hope this is helpful&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Kishor&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2015 07:16:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21184#M1611</guid>
      <dc:creator>KishorGhatage</dc:creator>
      <dc:date>2015-04-13T07:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21185#M1612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not sure that is what he wants...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; for i in projectResult:
...&amp;nbsp; i.replace("C:\\GIS_Result\\","")
...
'abc.shp'
'1234.shp'
'zyx.shp'
&amp;gt;&amp;gt;&amp;gt; projectResult
['C:\\GIS_Result\\abc.shp', 'C:\\GIS_Result\\1234.shp', 'C:\\GIS_Result\\zyx.shp']
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it doesn't seem to change the list&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and with this, I get an error message since projectResult is a list&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; projectResult.replace("C:\GIS_Result\","")
Traceback (&amp;nbsp; File "&amp;lt;interactive input&amp;gt;", line 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; projectResult.replace("C:\GIS_Result\","")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^
SyntaxError: EOL while scanning string literal
&amp;gt;&amp;gt;&amp;gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:51:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21185#M1612</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-10T20:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21186#M1613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Kishor,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="typ" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;AddMessage&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;fc&lt;/SPAN&gt;&lt;/CODE&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;) only gives me the name of 1 shapefile&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;and&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="typ" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;AddMessage&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;projectResult.replace("&lt;CODE style="font-weight: inherit; font-style: inherit;"&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;C&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;:&lt;/SPAN&gt;&lt;SPAN class="pln" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;\GIS_Result\",""&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;SPAN class="pun" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;) doesn't work at all .&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2015 23:53:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21186#M1613</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-13T23:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21187#M1614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check my thread, that has already been pointed out, I was hoping he would correct it​ or offer a different solution should mine not be suitable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 00:10:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21187#M1614</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-04-14T00:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21188#M1615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get [u'xyz.shp' ] as the output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 00:20:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21188#M1615</guid>
      <dc:creator>MarkWisniewski</dc:creator>
      <dc:date>2015-04-14T00:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21189#M1616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;​all that means is Unicode, it won't affect the ability to read the filename, or to use the print statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; a = u'unicode_string'
&amp;gt;&amp;gt;&amp;gt; a
u'unicode_string'
&amp;gt;&amp;gt;&amp;gt; print a
unicode_string&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:51:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21189#M1616</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-10T20:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Python - How to customise result in geoprocessing dialog window</title>
      <link>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21190#M1617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try os.path.basename(FileName)&amp;nbsp; It works for unix too...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have fun&lt;/P&gt;&lt;P&gt;Mody&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 05:24:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-how-to-customise-result-in-geoprocessing/m-p/21190#M1617</guid>
      <dc:creator>ModyBuchbinder</dc:creator>
      <dc:date>2015-04-14T05:24:55Z</dc:date>
    </item>
  </channel>
</rss>

