spy

1
The >>> prompt indicates you’re in the Python shell which accepts Python commands. The command from sympy import * imports all the SymPy functions into the current namespace. All SymPy functions are now available to you. To exit the python shell press CTRL+D. I highly recommend you also install ipython, which is an improved interactive python shell. If you have ipython and SymPy installed, you can start an ipython shell with SymPy pre-imported using the command isympy. For an even better experience, you can try ipython notebook, which is a web frontend for the ipython shell. Each section of this tutorial begins with a python import statement for the functions used in that section. If you use the statement from sympy import * in the beginning of your code, you don’t need to run these individual import statements, but I’ve included them so you’ll know which SymPy vocabulary is covered in each section.

Upload: atifchaudhry

Post on 04-Jan-2016

5 views

Category:

Documents


0 download

DESCRIPTION

Spy novel.

TRANSCRIPT

Page 1: Spy

The >>> prompt indicates you’re in the Python shell which acceptsPython commands. The command from sympy import * imports allthe SymPy functions into the current namespace. All SymPy functionsare now available to you. To exit the python shell press CTRL+D.I highly recommend you also install ipython, which is an improvedinteractive python shell. If you have ipython and SymPy installed,you can start an ipython shell with SymPy pre-imported using thecommand isympy. For an even better experience, you can try ipythonnotebook, which is a web frontend for the ipython shell.Each section of this tutorial begins with a python import statementfor the functions used in that section. If you use the statement fromsympy import * in the beginning of your code, you don’t need torun these individual import statements, but I’ve included them soyou’ll know which SymPy vocabulary is covered in each section.