The following code: ```py import itertools import matplotlib.pyplot as plt data = [180,250,130,50] # plot a bar chart ## --- plt.bar(range(len(data)), data) plt.clf() ## --- ``` Shows a spurious `rv` variable on the `data = ...` line: 