import matplotlib
from matplotlib import pyplot as plt
import numpy as np
fig = plt.figure()
plt.plot([10,5,0, 7, 19, 34, 3, 78])
plt.xlabel('Час')
plt.ylabel('Количество объявлений')
plt.show()
from pylab import *
fig = plt.figure()
plt.plot([10, 5, 0, 7, 19, 34, 3])
xticks(range(7), ['пн', 'вт', 'ср', 'чт', 'пт', 'сб', 'вс'])
plt.ylabel('Количество объявлений')
plt.show()