Python is English-like enough that everybody including non-programmers can understand it.<div>e.g</div><div><br></div><div><div># Import the operating system module</div><div>import os</div><div><br></div><div># define new function</div>
<div>def open_dir_tree(path):</div><div>    for File in os.listdir(path):</div><div>        file_or_dir = os.path.join(path, File)</div><div>        # Read the line below, this is almost full english language</div><div>        if os.path.isdir(file_or_dir) and not os.path.islink(file_or_dir):</div>
<div>            open_dir_tree(file_or_dir)</div><div>        else:</div><div>            print file_or_dir</div><div>open_dir_tree(".")</div><div>            </div><div><br></div><br><div class="gmail_quote"><br>
</div>-- <br>I develop dynamic website with PHP & MySql, Let me know about your site<br>
</div>