writing_python_scripts/quickref.tex
author Amit Sethi
Wed, 10 Nov 2010 12:23:40 +0530
changeset 441 430035b678f7
parent 335 d5248a15274c
permissions -rw-r--r--
Exercises for getting started with lists and some changes based on review

See where python searches for modules:\\
{\ex \lstinline|    sys.path|}

Include our own path in PYTHONPATH:\\
{\ex \lstinline|    sys.path.append(our_path)|}

Run certian code only if executed and not if imported:\\
{\ex \lstinline|    if __name__=="__main__": #do something|}