#!/usr/bin/env python # coding: utf-8 # # Chapter 1: Introduction to Clustering # # ## Exercise 1.03 # In[1]: cluster_1_points =[ (0,8), (3,8), (3,4) ] # In[2]: mean =[ (0+3+3)/3, (8+8+4)/3 ] print(mean)