input_output/quickref.tex
author Anoop Jacob Thomas<anoop@fossee.in>
Sun, 07 Nov 2010 18:36:59 +0530
changeset 398 36295bb91766
parent 329 5c8e88276e1f
permissions -rw-r--r--
Added quickrefs for dictionaries, getting started with arrays, for, matrices, other plots, savefig, using python modules.

Printing a variable:\\
{\ex \lstinline|    print x|}

Printing with out a new line:\\
{\ex \lstinline|    print x, |}

Using modifiers while printing:\\
{\ex \lstinline|    print "a is \%d b is \%f"\%(a, b)|}

Taking input from user:\\
{\ex \lstinline|    x = raw_input()|}

Display a prompt while taking input:\\
{\ex \lstinline|    x = raw_input("Type a number: ")|}