mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
25 lines
311 B
Python
25 lines
311 B
Python
import pylab
|
|
pylab.
|
|
|
|
# two gotos
|
|
#! ['module numpy']
|
|
import numpy
|
|
|
|
#! ['module random']
|
|
import numpy.random
|
|
|
|
#? ['array2string']
|
|
numpy.array2string
|
|
|
|
#? ['shape']
|
|
numpy.matrix().shape
|
|
|
|
#? ['random_integers']
|
|
pylab.random_integers
|
|
|
|
#? []
|
|
numpy.random_integers
|
|
|
|
#? ['random_integers']
|
|
numpy.random.random_integers
|