Plot city population as a pie chart for Washington cities with more than 100,000 people
#!/usr/bin/python3
import matplotlib.pyplot as plt
labels = 'Seattle', 'Spokane', 'Tacoma', 'Vancouver', 'Bellevue','Kent', 'Everett', 'Renton', 'Spokane Valley', 'Federal Way'
sizes = [737015, 228989, 219346, 190915, 151854, 136588, 110629, 106785, 102976, 101030]
fig1, ax1 = plt.subplots()
ax1.pie(sizes, labels=labels, autopct='%1.1f%%',
shadow=True, startangle=90)
ax1.axis('equal')
plt.show()