<?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 Calculate Field with Python in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147910#M51982</link>
    <description>&lt;P&gt;Dear Community~~&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="질문1.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34979i050D0620E8D00FF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="질문1.png" alt="질문1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;def abbreviate(x):&lt;BR /&gt;words = x.split()&lt;BR /&gt;letters = [word[:3] for word in words]&lt;BR /&gt;return "".join(letters)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to make it like the picture below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What should I do?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="질문2.png" style="width: 331px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34981i669C1D0A81FC4A1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="질문2.png" alt="질문2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You~~&lt;/P&gt;</description>
    <pubDate>Fri, 25 Feb 2022 10:04:53 GMT</pubDate>
    <dc:creator>KalSsin</dc:creator>
    <dc:date>2022-02-25T10:04:53Z</dc:date>
    <item>
      <title>Calculate Field with Python</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147910#M51982</link>
      <description>&lt;P&gt;Dear Community~~&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="질문1.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34979i050D0620E8D00FF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="질문1.png" alt="질문1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;def abbreviate(x):&lt;BR /&gt;words = x.split()&lt;BR /&gt;letters = [word[:3] for word in words]&lt;BR /&gt;return "".join(letters)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to make it like the picture below.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What should I do?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="질문2.png" style="width: 331px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34981i669C1D0A81FC4A1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="질문2.png" alt="질문2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You~~&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 10:04:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147910#M51982</guid>
      <dc:creator>KalSsin</dc:creator>
      <dc:date>2022-02-25T10:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Field with Python</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147939#M51986</link>
      <description>&lt;P&gt;A solution is this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;def abbreviate(x):
    words = x.split()
    letters = [word[:3] + " / " for word in words]
    text = "".join(letters)
    text = text[:-3] # Remove last slash
    return text&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 25 Feb 2022 12:29:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147939#M51986</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2022-02-25T12:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Field with Python</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147949#M51987</link>
      <description>&lt;P&gt;&lt;SPAN&gt;It's incredible.~~~~&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you so m~~~~uch.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 12:40:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147949#M51987</guid>
      <dc:creator>KalSsin</dc:creator>
      <dc:date>2022-02-25T12:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate Field with Python</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147953#M51989</link>
      <description>&lt;P&gt;Just the following expression should work. No Code Block required.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;'/'.join([i[0:3] for i in !Name_Add1!.split(' ')])&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 25 Feb 2022 12:49:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/calculate-field-with-python/m-p/1147953#M51989</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2022-02-25T12:49:53Z</dc:date>
    </item>
  </channel>
</rss>

