jupyter demo

This is a demo

1
%matplotlib inline
1
2
3
4
5
import numpy as np
import matplotlib.pyplot as plt
x=xrange(1,10)
y = np.sin(x)
plt.plot(x,y)
[<matplotlib.lines.Line2D at 0x75590f0>]

png

文章目录
  1. 1. This is a demo
|