Hello!
I am writing a Python code and the function createTIN does not work if i use 2 input features but i need both of them.
This is the code (the workspace is defined before):
area <SPAN class="operator token">=</SPAN> <SPAN class="string token">'Model_Area.shp'</SPAN> <SPAN class="comment token"># a polygon to clip the TIN</SPAN>
data <SPAN class="operator token">=</SPAN> <SPAN class="string token">'IST_HQ100_Depth.shp'</SPAN> <SPAN class="comment token"># the .shp with the height field i need</SPAN>
dField <SPAN class="operator token">=</SPAN> <SPAN class="string token">'Field4'</SPAN>
TIN <SPAN class="operator token">=</SPAN> output <SPAN class="operator token">+</SPAN> <SPAN class="string token">"tin"</SPAN> <SPAN class="comment token"># the folder is specified above</SPAN>
Input_Features <SPAN class="operator token">=</SPAN> <SPAN class="string token">"{0} {1} Mass_Points <None>"</SPAN><SPAN class="punctuation token">.</SPAN>format<SPAN class="punctuation token">(</SPAN>data<SPAN class="punctuation token">,</SPAN> dField<SPAN class="punctuation token">)</SPAN>
inArea <SPAN class="operator token">=</SPAN> <SPAN class="string token">"{0} <None> Soft_Clip <None>"</SPAN><SPAN class="punctuation token">.</SPAN>format<SPAN class="punctuation token">(</SPAN>area<SPAN class="punctuation token">)</SPAN>
arcpy<SPAN class="punctuation token">.</SPAN>CreateTin_3d<SPAN class="punctuation token">(</SPAN>TIN<SPAN class="punctuation token">,</SPAN> CoordSys<SPAN class="punctuation token">,</SPAN> <SPAN class="punctuation token">[</SPAN>Input_Features<SPAN class="punctuation token">,</SPAN> inArea<SPAN class="punctuation token">]</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>The syntax in the DesktopHelp fore more inputs has squared brackets and comma like i did.
If i give only one input (which is the example in the DesktopHelp) it works, but the output is wrong.
With both inputs in the ArcMap GUI it works with no problem (picture) and result is correct.
I really need to code it because I will put data and dField in a for loop for many data.
Does anybody know what the mistake could be? Pleeease help me if you can 
I am using Python 2.7 and ArcMap 10.3, which should be compatible
