#!/usr/bin/env python # coding: utf-8 # ## Python as a calculator # In[4]: 1 + 3 # ## Import functionality # In[12]: import this # In[15]: from time import asctime # In[16]: asctime() # ## Simple plotting # In[11]: import matplotlib.pyplot as plt plt.plot([1,2,3], [3, -4, 20]) plt.title('Awesome plot!') plt.xlabel('X') plt.ylabel('Y') plt.show() # In[ ]: