I try to print the value of precipitation sum of a given pixel (point location)
# pixel location
loc_point = ee.Geometry.Point([-0.627983, 52.074361])
# get precip
precip = ee.ImageCollection('NASA/GPM_L3/IMERG_MONTHLY_V06')\
.filterDate('2019-06-01', '2020-06-30')\
.filterBounds(loc_point)\
.select('precipitation')
# sum
precip_sum = precip.reduce(ee.Reducer.sum())
# print sum precip value
precip_sum.get('precipitation_sum').getInfo()