1+1 3/2 # Import necessary libraries from fastai2.vision.all import * import matplotlib.pyplot as plt from PIL import Image a = 1 b = a + 1 c = b + a + 1 d = c + b + a + 1 a, b, c ,d plt.plot([a,b,c,d]) plt.show() Image.open('images/chapter1_cat_example.jpg') %timeit [i+1 for i in range(1000)]