--Le début de la ligne %
est une fonction magique (fonction de ʻipython) --Comment découvrir est
% magic dans le mode interactif de ʻipython
--Si vous recherchez % matplotlib
,% matplotlib?
J'étudie probablement à jupyter, mais c'est salé.
jupyter
In1: %matplotlib inline
In2: import matplotlib.pyplot as plt
Quel est le «%» au début de la ligne?
Je ne sais pas ce que ça veut dire. Pour le moment, pratiquez «RYFM».
python
$ pydoc matplotlib
(Omis)
or using ipython::
ipython
at your terminal, followed by::
In [1]: %matplotlib
In [2]: import matplotlib.pyplot as plt
at the ipython shell prompt.
(Omis)
Même si vous obtenez %
, vous pourriez penser que c'est une fonction du corps principal de Python
.
Le résultat de google. ↓
%quickref
Sur la ligne de commande, faites ʻipythonpuis
% quickref`.
python
$ ipython
In [1]: %quickref
(Omis)
%magic : Information about IPython's 'magic' % functions.
(Omis)
Alors l'explication de «magie» est «% magique».
%magic
python
In [2]: %magic
IPython's 'magic' functions
===========================
The magic function system provides a series of functions which allow you to
control the behavior of IPython itself, plus a lot of system-type
features. There are two kinds of magics, line-oriented and cell-oriented.
(Omis)
Donc, si vous recherchez matplotlib
, l'explication apparaîtra.
Mis à part cela
For a list of the available magic functions, use %lsmagic. For a description of any of them, type %magic_name?, e.g. '%cd?'.
C'est vrai
%matplotlib?
python
$ ipython
In [1]: %matplotlib?
Faire.
Recommended Posts