%python
reset()
from scipy import *
from matplotlib.pyplot import *
x = linspace(0, 2*pi, 100)
plot(x,sin(x))
xlabel('x'), ylabel('sin(x)')
title('Plot created by Rudra Pratap')
savefig('sin.png')