~ubuntu-branches/debian/experimental/spyder/experimental

« back to all changes in this revision

Viewing changes to spyderlib/utils/inspector/tutorial.rst

  • Committer: Package Import Robot
  • Author(s): Picca Frédéric-Emmanuel, Ghislain Antony Vaillant, Picca Frédéric-Emmanuel
  • Date: 2015-02-26 13:31:59 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20150226133159-zvom6ax6mah3irhv
Tags: 2.3.3+dfsg-1~exp1
[Ghislain Antony Vaillant]
* New upstream release.

[Picca Frédéric-Emmanuel]
* Upstream moved to github (watch, control and copyright file updated)

Show diffs side-by-side

added added

removed removed

Lines of Context:
908
908
this::
909
909
 
910
910
    In [5]: import pylab
911
 
    In [6]: pylab.plot(range(10), 'o'))
 
911
    In [6]: pylab.plot(range(10), 'o')
912
912
 
913
913
 
914
914
Plotting with the Python console
922
922
plot::
923
923
 
924
924
    >>> import pylab
925
 
    >>> pylab.plot(range(10), 'o'))
 
925
    >>> pylab.plot(range(10), 'o')
926
926
 
927
927
If you execute your code in a dedicated console, you need to use
928
928
matplotlib's or pylab's ``show()`` command in your code to make a plot