Dear,<br>I have number of&nbsp; files with each file contains&nbsp; many points (x,y,z coordinates) of a line/curve. I use python programmable source to visualize those lines&nbsp; (like the example given to generates a Helix curve in the paraview Wiki.) <br>
I use file=fopen(&quot;file1&quot;,&#39;r&#39;) and extract the coordinates of each point from the file&nbsp; and visualize that line.. and it is working great.<br>now the problem is,&nbsp; i have so many files (many lines) and i want to see all the lines at once.<br>
so i could use like<br><br>FILES=[&quot;file1.dat&quot;,&quot;file2.dat&quot;, ..... ]<br>for filename in FILES:<br>&nbsp;&nbsp; file=open(filename,&#39;r&#39;)<br><br>but i would like to know more elegant way than writing each filenames in an array (difficult in the case when i have say 100 files)<br>
<br>any tips and tricks..?<br>thank you<br>Sreejith<br><br>