I'm using arcgis 10.2.2
I am trying to create a line of commands with python
list, every feature class in a feature dataset
and then display me in my data frame so that they can see on my map
example
<SPAN class="c" style="color: #008000;"># Set the workspace. List all of the polygon feature classes that </SPAN><BR /><SPAN class="c" style="color: #008000;"># start with 'G'</SPAN><BR /><SPAN class="c" style="color: #008000;">#</SPAN><BR /><SPAN class="n">arcpy</SPAN><SPAN class="o">.</SPAN><SPAN class="n">env</SPAN><SPAN class="o">.</SPAN><SPAN class="n">workspace</SPAN> <SPAN class="o">=</SPAN> <SPAN class="s" style="color: #a31515;">"D:/St_Johns/data.gdb"</SPAN><BR /><SPAN class="n">fcs</SPAN> <SPAN class="o">=</SPAN> <SPAN class="n">arcpy</SPAN><SPAN class="o">.</SPAN><SPAN class="n">ListFeatureClasses</SPAN><SPAN class="p">(</SPAN><SPAN class="s" style="color: #a31515;">"G*"</SPAN><SPAN class="p">,</SPAN> <SPAN class="s" style="color: #a31515;">"polygon"</SPAN><SPAN class="p">)</SPAN>
Now I need to have this result in my dataframe
all polygons polygons starting with "G"
I have to do in my scrip to have the polygons in my dataframe?